window.addEvent("domready", function(){
	
	//---------------------------------------
	//ROLLOVER FOR PIE LOCATOR LINK
	//---------------------------------------
	//preload images
	var aPreLoad = new Array();
	var aPreLoadi = 0;
 
	//do rollover
	$$('#branding-strapline').each(function(el){
		//let's preload
		aPreLoad[aPreLoadi] = new Image();
		aPreLoad[aPreLoadi].src = el.src.replace(el.src.replace('.gif', '-o.gif'));
		aPreLoadi++;
 
		el.addEvent('mouseover',function(){
			this.setAttribute('src',this.src.replace('.gif', '-o.gif'));
		});
 
		el.addEvent('mouseout',function(){
			this.setAttribute('src',this.src.replace('-o.gif','.gif'));
		});
	});
	
});