// JavaScript Document
var Homepage = {
	Init : function(){
			this.SetUpSIFR();
			this.SetMidRightBorders(true);
	},
	SetMidRightBorders : function(usingSifr){
//		var midRightContainerHeight = document.getElementById('mid-right-container').offsetHeight;
//		document.getElementById('mid-right-border-left').style.height = midRightContainerHeight + 'px';
//		document.getElementById('mid-right-border-right').style.height = midRightContainerHeight + 'px';
		//Check for SIFR and IE6 bug
		if(is_ie6 && !usingSifr){	
			document.getElementById('mid-right-border-right').style["_margin-left"] = '263px';
		}

	},
	SetUpSIFR : function(){
			if(typeof sIFR == "function"){
				sIFR.replaceElement("h3", named({sFlashSrc: "assets/sIFR-2/foundry_context_bold.swf", sWmode:"transparent"}));
				sIFR.replaceElement("#mid-right-sales h2, #mid-right-share_thoughts h2", 
									named(
										  {
											  sFlashSrc: "assets/sIFR-2/foundry_sterling_medium.swf", 
											  sWmode:"transparent"}));
			};
		}
}