$(document).ready(function(){
		
		if ($('#home-left').height() < $('#home-right').height()) {
				$('#home-left').height($('#home-right').height());
				$('#home-right-top').height(
					$('#home-left').height() - 185);
		
		} else {
				$('#home-right-top').height(
					$('#home-left').height() - 185);
		}
		
 
 // Secondary Page Script

 
 		var top = Math.max($('#left').height(), $('#right').height()) - 70;
		
		if ($('#left').height() < $('#right').height()) {
				$('#left').height($('#right').height());
				$('.goodsearch').css({
								 marginTop: top 
								 });
		
		} else {
				$('.goodsearch').css({
								 marginTop: top 
								 });
		}
 
// End Secondary Page Script

});