
	$(document).ready( function() {
		
		$(".menu-items li").mouseover (function(e) {	
			$(this).children(".static-drop-menu-wrapper").fadeIn("fast");	
		});
				
		$(".menu-items li").mouseleave (function(e) {	
				$(this).children(".static-drop-menu-wrapper").fadeOut("fast");
		});
		
		$(".static-drop-menu li").mouseover (function(e) {
			$(this).children("a").css("color", "#006bad");
		});
		
		$(".static-drop-menu li").mouseout (function(e) {
			$(this).children("a").css("color", "#656565");
		});	

	});		

