if(sweepsOn != true){
	var contents = new Array("attractions","spas","golf","casinos");
	var cLinks = new Array("/mtourism/attractions/attractions.jsp","/mtourism/attractions/spas.jsp","/mtourism/attractions/golf.jsp","/mtourism/dining-entertainment/casinos.jsp");
	
	function replacerSetup(){
		var loc = window.location.toString();
		var wF = Math.round(Math.random()*(contents.length-1));			
	
		if(loc.indexOf(cLinks[wF]) == -1){
			replacer(wF);	
		}else{
			replacerSetup();
		}	
	}

	function replacer(wF){
		if($('feature-right')) {
			var feature = $('feature-right').getFirst();		
			var rightFeatureLnk = new Element('a', { 'href': cLinks[wF] });			
			var rightFeaturePic = new Element('img', { 'src': '/images/feature-right-' + contents[wF] + '.jpg' });			
			var rightFeatureCnt = rightFeaturePic.inject(rightFeatureLnk);
			rightFeatureLnk.inject(feature);
		}
	}
}