if (document.getElementById){
	document.write('<style type="text/css">\n')
	document.write('.submenu{display: none;}\n')
	document.write('</style>\n')
}

function SwitchMenu(obj){
	if(document.getElementById){
		var el = document.getElementById(obj);
		var ar = document.getElementById("masterdiv").getElementsByTagName("span");
		if(el.style.display != "block"){
			for (var i=0; i<ar.length; i++){
				if (ar[i].className=="submenu")
					ar[i].style.display = "none";
			}
			el.style.display = "block";
		} else {
			el.style.display = "none";
		}
	}
}

function swapNewsBtn()
{
	if (document.newsBtn.src == "http://" + location.host + "/4yourgarage.com/themes/4yourgarage/images/home/news.gif")
	{
		document.newsBtn.src = "themes/4yourgarage/images/home/news_over.gif";
		document.specialsBtn.src = "themes/4yourgarage/images/home/specials.gif";
	} else {
		document.newsBtn.src = "themes/4yourgarage/images/home/news.gif";
	}
}

function swapBtn(btnID) {
	if (document.getElementById(btnID).src == "http://" + location.host + "/4yourgarage.com/themes/4yourgarage/images/home/button_blank.gif") {
		document.getElementById(btnID).src = "themes/4yourgarage/images/home/button_blank_active.gif";
	} else {
		document.getElementById(btnID).src = "themes/4yourgarage/images/home/button_blank.gif";
	}
}

function swapSpecialsBtn()
{
	if (document.specialsBtn.src == "http://" + location.host + "/4yourgarage.com/themes/4yourgarage/images/home/specials.gif") {
		document.specialsBtn.src = "themes/4yourgarage/images/home/specials_over.gif";
		document.newsBtn.src = "themes/4yourgarage/images/home/news.gif";
	} else {
		document.specialsBtn.src = "themes/4yourgarage/images/home/specials.gif";
	}
}