$(document).ready(function(){

	if($("div.home-content").height() > $("div.blog-content").height())
	{
	    $("div.blog-content").height($("div.home-content").height());
	}
	else	
	{
	    $("div.home-content").height($("div.blog-content").height());
	}
	
});	
