function runCommon()
{	
	FLIR.init( { path: 'facelift-1.2/'} );
	$("#ticker li, #leftCallouts > div.leftCallout > div.label > span.text, #bottomCallouts > div.bottomCallout > div.label > span.text").not(".noFLIR").each( function() { FLIR.replace(this, new FLIRStyle({ realFontHeight:true, resizeBox:false}) ); } );
	$("h1#pageTitle, h2, h3, #offersNav a").not(".noFLIR").each( function() { FLIR.replace(this, new FLIRStyle({ realFontHeight:true, resizeBox:false, mode: 'wrap'}) ); } );
	
	// must set these here instead of in CSS, otherwise causes FLIR bug in callouts in IE
	$("#leftCalloutOne div.label span.text").css('background-color', '#545454');
	$("#leftCalloutTwo div.label span.text").css('background-color', '#c2cb1e');
	$(".bottomCallout div.label span.text").css('background-color', '#c2cb1e');
	$("#bottomCalloutThree div.label span.text").css('background-color', '#545454');
	$("body.home #bottomCalloutTwo div.label span.text").css('background-color', '#545454');
	$("body.home #bottomCalloutThree div.label span.text").css('background-color', '#c2cb1e');
	$("body.propertySpecs #mainColRight #bottomSection #availableSpaceHeader").css('background-color', '#046293');
	
	// required to make callout links work in IE6
	$(".bottomCallout, .leftCallout").each(function (i) { 
	  var title = $(this).children("a.blockLink").attr("href");
	  if(title != undefined)
	  {
		$(this).click(function () { 
	  		window.location.href = title;
		});
	  }
    });
	
	var activeSel = "";
	
	if($('body').hasClass('contact') )
	{
		activeSel = 'a.contact'
	}
	else if($('body').hasClass('howToFindUs') )
	{
		activeSel = 'a.howToFindUs'
	}
	else if($('body').hasClass('storeDirectory') )
	{
		activeSel = 'a.storeDirectory'
	}
	else if($('body').hasClass('savingsAndPromotions') )
	{
		activeSel = 'a.savingsAndPromotions'
	}
	else if($('body').hasClass('eventsAndNews') )
	{
		activeSel = 'a.eventsAndNews'
	}
	else if($('body').hasClass('leasingOpportunities') )
	{
		activeSel = 'a.leasingOpportunities'
	}
	else if($('body').hasClass('aboutUs') )
	{
		activeSel = 'a.aboutUs'
	}
	
	$("#nav").accordion({
		header: 'a.landing',
		event: 'unload',
		active: activeSel,
		autoHeight: false,
		animated: 'easeslide'
	});
	
	
	var landingItems = $("#nav li.landingItem");
	landingItems.each(function (){
		var headerIndex = landingItems.index(this);
		var config = {    
			 sensitivity: 2, // number = sensitivity threshold (must be 1 or higher)    
			 interval: 45, // number = milliseconds for onMouseOver polling interval    
			 over: function(){
				 $("#nav").accordion('activate', headerIndex );
			 }, // function = onMouseOver callback (REQUIRED)    
			 timeout: 0, // number = milliseconds delay before onMouseOut    
			 out: function(){} // function = onMouseOut callback (REQUIRED)    
		};
		
		$(this).hoverIntent(config);
	
	});

}