$(function(){
	//メニューエフェクト
	//TOPメニューの4個に付与
	var len = 4
	for(i=0; i<len; i++){
		$("ul.gloval li").eq(i).hover(
		//Over
		function(){
			var ChildDom 	= $(this).children("div.over_left,div.over_right");
			
			$(this).css("cursor","pointer").bind("click",function(e){
					var Link		= $(this).children("a").attr("href");
					location.href	= Link;
			});
			
			$(ChildDom).eq(0).stop(true,false).animate(
					{"width":"200px"},
				{duration: 500}
			);
			
			$(ChildDom).eq(1).stop(true,false).animate(
					{"width":"200px"},
				{
						duration: 500,
					    complete: function(){
								$(this).prevAll(".over_text").stop(true,true).show("fast");
						}
					});
		},
		//Out
		function(){
			var ChildDom = $(this).children("div.over_left,div.over_right");
			$(ChildDom).stop(true,false).animate({"width":"0px"},{duration: 500});
			$(this).children(".over_text").stop(true,true).hide("fast");
		});
	}
});
