$(document).ready(function() {
    $('#nav-img-horizontal ul').hide().each(function () {
		$(this).parent().hover(function () {
			if (jQuery.browser.msie) {
				$(this).find('ul').show().parent().find('a:first').addClass('actjs');
			} else {
				$(this).find('ul').fadeIn('fast').parent().find('a:first').addClass('actjs');
			}
		}, function () {
			if (jQuery.browser.msie) {
				$(this).find('ul').hide().parent().find('a:first').removeClass('actjs');
			} else {
				$(this).find('ul').fadeOut('fast').parent().find('a:first').removeClass('actjs');
			}
		});
	});
});