$(document).ready(function(){
						   
	$(".menu-holder .main-menu li").hover(
		function() {$(this).addClass('hover'); $(this).children('ul').fadeIn("fast");},
		function() {$(this).removeClass('hover'); $(this).children('ul').fadeOut("fast");}
	)
   
	 
});
