//if the isFront variable does not exist it reports as undefined and the 
//RSS feed is hidden and resized
//if it does exist the RSS feed is displayed as normal
//Located: ssi/isFront.html
 $(document).ready(function(){
	
	if( typeof(isFront) == 'undefined'){
		$("#bd_right").css("min-height", "160px");
		$("#bd_right").css("height", "160px");
		$("#bd_right").css("background", "#c4e4f8");
		$("#mhcc_news_section").css("display", "none");
		$("#bd_center").css("width", "770px");
	}
	
		
 });

 

		