
(function($) {
	$(document).ready(function(){
	$("#mainmenu li").hover(
		function () {
			$(this).children("ul").fadeIn("fast");
			$(this).addClass("active");
		}, 
		function () {
			$(this).removeClass("active");
			$(this).children("ul").hide();
		}
	);
});

})(jQuery);