var $j = jQuery.noConflict();

function searchAndReplace(){
	var contentHeight = $j(".subPage .thePage .content").height();
	if ( contentHeight < 600 ) {
		$j(".subPage .thePage .content").height("600px");
	}
	
	

}

$j(document).ready(searchAndReplace);