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