
$(document).ready(function(){
	
	$("#menu ul").find("li").each(function(i){
		var def_width;
		//alert($(this).find("a").attr('title'));
		//$(this).css("background-color", '#ffffff');
		
		$(this).hover(
			function () {
  				//alert('hover');
  				$(this).find("ul:first").css("display", "block");
  			},
  			function () {
  				//alert('out');
    			$(this).find("ul:first").css("display", "none");
  			});
	});
});

