
$.fn.Menu = function() {
	var element = this;
	$('li', element).mouseover(function(){
		$(this).addClass('hover');
	});
	$('li', element).mouseleave(function(){
		$(this).removeClass('hover');
	});
}
jQuery(function(){
	jQuery("#topnav").Menu();
	jQuery("#topnav ul ul a").css({
		opacity:1
	});
});
