
$(document).ready(function(){
	$('#topm li.mti').hover(
		function() {
			$(this).addClass('hovitem');
			$(this).find('.wsm').css('display', 'block');
		},
		function() {
			$(this).removeClass('hovitem');
			$(this).find('.wsm').css('display', 'none');
		}
	);
});

/*
$(document).ready(function(){
	$('#collections_menu .cat_link').hover(function() {
		$(this).next(".downmenu").stop(true, true).animate({opacity: "show", top: "150"}, "slow");
	   // $(this).next(".downmenu").animate({opacity: "show", top: "200"}, "slow");
	}, function() {
	   // $(this).next(".downmenu").animate({opacity: "hide", top: "300"}, "fast");
	    $(this).next(".downmenu").stop(true, true).animate({opacity: "hide", top: "300"}, "fast");
	});
});
*/

$(document).ready(function(){
	$('#collections_menu .cat_link').hover(
		function() {
			$(this).addClass('hovitem');
			$(this).find('.downmenu').css('display', 'block');
		},
		function() {
			$(this).removeClass('hovitem');
			$(this).find('.downmenu').css('display', 'none');
		}
	);
});





/*
$(document).ready(function(){
	$('.area').hover(function(){
		$(this).next('.area-cont').addClass('areahover');
	},
		function(){
			$(this).next('.area-cont').removeClass('areahover');
	}
	);

});

*/


