/*¹«ÓÃjsvascript*/
$.extend($.fn, {
		leftmenu:function(){
		$(this).each(function(e){	
			$(this).bind("mouseenter",function(){
					$(".menu-left").remove();
					var div = $('<div class="menu-left"><div class="menu-left-t"></div><div class="menu-left-c"></div><div class="menu-left-b"></div></div>');
				    $(this).append(div);	
					//$('body').append(div);
                    var h = $(".meun-left-sub:eq("+e+")").html();
					var x = $(this).offset().left + $(".proClass").width();
					var y = $(this).offset().top;
					//alert(x+"+"+y);
					$(".menu-left").css({top:y,left:x-15});
					$(".menu-left-c").html(h);
					$(".menu-left").css("display","block");
					//$(".menu_infos").css("height",$(".menu_img").height()-20);
			});	
			$(this).bind("mouseleave",function(){
					$(".menu-left").remove();
			});	
	   });
	}
})

$(function(){
	$(".menu3").leftmenu();	
	$(".menu-left").bind("mouseleave", function(){
			$(".menu-left").hide();
	});
})
