$(document).ready(function(){
	//调整图片显示大小
	$(".single-page").find("img").each(function(i){
		//$("img").each(function(i){
			if($(this).width() > 680){
				$(this).height($(this).height()*680/$(this).width());
				$(this).width(680);
			}
		//});
	});
	
	//调整前台页面高度
	if(($(".pro-info").height()) < 350){
		$(".pro-info").height(350);
	}
	if(($(".page-info").height()) < 350){
		$(".page-info").height(350);
	}
	if(($(".pro-detail").height()) < 400){
		$(".pro-detail").height(400);
	}
	//if(($(".pro-info-detail").height()) < 400){
	//	$(".pro-info-detail").height(400);
	//}
	
}); 

