function prepareSelector()
{
if(!document.getElementsByTagName||!document.getElementById||!document.getElementsByName('ULpromoSelector')){
	return false;
}
var links=document.getElementById('ULpromoSelector').getElementsByTagName('a');
links[0].onclick=function(){return divSelector(1);}
links[1].onclick=function(){return divSelector(2);}
}

function divSelector(pwhichDiv)
{
hideDivs();
if(pwhichDiv==1)document.getElementById('DIVcontentPromotions1').style.display='block';
else if(pwhichDiv==2)document.getElementById('DIVcontentPromotions2').style.display='block';
//Marks the active DIV
if(pwhichDiv==1){
	document.getElementById('AboxView').style.backgroundPosition='0 -32px';
	document.getElementById('AlistView').style.backgroundPosition='-39px 0';
}else if(pwhichDiv==2){
	document.getElementById('AlistView').style.backgroundPosition='-39px -32px';
	document.getElementById('AboxView').style.backgroundPosition='0 0';
}
return false;
}

function hideDivs(){document.getElementById('DIVcontentPromotions1').style.display=document.getElementById('DIVcontentPromotions2').style.display='none';}
