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