$(document).ready(function(){
	$(".menu-item").hover(
		function(){
			if($(this).children("ul").css('display')=='none')
				$(this).children("ul").show();
		},
		function(){
			$(this).children("ul").hide();
		}
	);
	 $(".menu-item ul").hover(
		function(){
			$(this).parent().children("a").addClass('selected');
		},
		
		function(){
			$(this).parent().children("a").removeClass('selected');
		}
	);
 });
