
$(function(){

	$("li.dropdown_handle").hover(function() {

		// $(this).find("ul.dropdown").slideDown('fast').show(); 
		// console.log($(this).find("ul.dropdown").css('display'));
		$(this).find("ul.dropdown").css('display', 'block');
		// $(this).find("ul.dropdown").show(); 
		// console.log($(this).find("ul.dropdown").css('display'));
		
	});
	
	$("li.menu_item").hover(function() 
	{
	}, function(){
	
		$(this).find("ul.dropdown").hide();
		
	});

});
