/*
	作者：戴铭
*/
$(window).load(function(){
	//控制图片大小
	var $img = $("img");
	$img.each(function() {
		if($(this).width() > 580) {
			var imgowidth = $(this).width();
			var imgoheight = $(this).height();
			$(this).width(580).height(Math.round(580*(imgoheight/imgowidth)));
		}
	});
});

