$(window).load(function(){ 
						
//圖片鎖寬度

//載入方式：
//$("圖片容器").ImageAutoSizeW(寬);

$.fn.ImageAutoSizeW = function(width){
	
    $(this).find("img").each(function(){
								
        var image = $(this);
		
		if(image.width()>width) {
			
				image.width(width);
				image.height(width/image.width()*image.height());
			
		}

    });
} 

});
