// JavaScript Document
/*需預先載入jQuery 1.42版以上才能使用*/
//$(function(){	
function comp_resize(){
	var csc1h = $('#company_side1').height();	
	var csc2h = $('#company_side2').height()+$('.csc:last').height();
	//var x;
	//alert($('.ip_ratings').height());
	//alert(csc2h);
	var prodh = $('#prodList').height();
	if(prodh > 0){csc2h+=prodh;}
	$('#company_content').height(Math.max(csc1h,csc2h)+35);	
}
//});		
