$(document).ready(function() {

	if($(".home_news .inner").height() > $(".home_prod .inner").height()){
		$(".home_prod .inner").height($(".home_news .inner").height());
	}
	if($(".home_news .inner").height() < $(".home_prod .inner").height()){
		$(".home_news .inner").height($(".home_prod .inner").height());
	}
 });

