;(function($){
	$(document).ready(function() {
		$("#menuimage li.imagebutton").hover( function(){ $(this).children("ul").css("display","block"); }, function(){ $(this).children("ul").css("display","none"); });
		$("#menuimage li.imagebutton ul li").hover( function(){
			//$(this).children("ul").fadeIn(); 
			$(this).children("ul").css("display","block");
		}, function(){ 
			//$(this).children("ul").fadeOut(); 
			$(this).children("ul").css("display","none");
		});
    	
		function makeSize() {
			$("#menuimage").children("li.imagebutton").each( function(){
				var imgDom = $(this).children("a").children("img");
				var imgSizeWidth = imgDom.attr("width");
				var imgSizeHeight = imgDom.attr("height");
				$(this).children("ul").css("width",imgSizeWidth+"px");
				$(this).children("ul").children("li").children("ul").css("margin-left",imgSizeWidth+"px");
				$(this).children("ul").children("li").children("ul").css("width",imgSizeWidth+"px");
			});
		}
		
		makeSize();
    });
})(jQuery);
