$(window).resize(function(){
	imgheightauto();
})
$(function(){

	imgheightauto();
	$(".tab li").click(function() {
		$(this).addClass("active").siblings("li").removeClass("active");
		var index = $(this).index();
		$(".tabBox .tab_box").eq(index).removeClass("hidden").siblings().addClass("hidden");
		imgheightauto();
	});
});

function imgheightauto(){
	var imgbox1=$(".pic li");
	var imgbox=$(".product .pro_img");
	var imgbox2=$(".case .pro_img");
	for(var i=0;i<imgbox1.length;i++){
		var imgboxH1=Math.round((imgbox1[i].offsetWidth)*(210/280));
		imgbox1[i].style.height=imgboxH1+"px";
	}
	for(var i=0;i<imgbox.length;i++){
		var imgboxH=Math.round((imgbox[i].offsetWidth)*(340/445));
		imgbox[i].style.height=imgboxH+"px";
	}
	for(var i=0;i<imgbox2.length;i++){
		var imgboxH2=Math.round((imgbox2[i].offsetWidth)*(330/275));
		imgbox2[i].style.height=imgboxH2+"px";
	}
}

