function setEqualHeight(from,to,diff){
	var fromHeight = jQuery(from).height();
	if(fromHeight > 740){
		to.css("height",fromHeight-diff+"px"); //diff wegen padding und margins
	}
	
}
