function switchTab_Specials(tab){

	// first hide any inactive tabs/content elements
	var inactiveTabs = new Array(2);
	
	if (tab == "promo1") 
		inactiveTabs = ["promo2","promo3"];
	else if (tab == "promo2") 
		inactiveTabs = ["promo1","promo3"];
	else 
		inactiveTabs = ["promo1","promo2"];
		
	for (var i=0; i<inactiveTabs.length; i++)
	{
		document.getElementById(inactiveTabs[i] + "RightOn").style.display = "none";
		document.getElementById(inactiveTabs[i] + "RightOff").style.display = "block";
		document.getElementById(inactiveTabs[i] + "_content").style.display = "none";
	}
	
	// lastly, show the active items
	document.getElementById(tab + "RightOn").style.display = "block";
	document.getElementById(tab + "RightOff").style.display = "none";
	document.getElementById(tab + "_content").style.display = "block";
}

function switchTab_Specials(tab){

	// first hide any inactive tabs/content elements
	var inactiveTabs = new Array(2);
	
	if (tab == "promo1") 
		inactiveTabs = ["promo2"];
	else if (tab == "promo2") 
		inactiveTabs = ["promo1"];
	
		
	for (var i=0; i<inactiveTabs.length; i++)
	{
		document.getElementById(inactiveTabs[i] + "RightOn").style.display = "none";
		document.getElementById(inactiveTabs[i] + "RightOff").style.display = "block";
		document.getElementById(inactiveTabs[i] + "_content").style.display = "none";
	}
	
	// lastly, show the active items
	document.getElementById(tab + "RightOn").style.display = "block";
	document.getElementById(tab + "RightOff").style.display = "none";
	document.getElementById(tab + "_content").style.display = "block";
}
