// JavaScript Document

function highlight(pgname){
	
	switch(pgname)
	{
		case "home":
			document.getElementById("home").style.backgroundPosition= "0 -22px";
			break;
		case "tritec":
			document.getElementById("tritec").style.backgroundPosition= "0 -22px";
			break;
		case "tritecnfp":
			document.getElementById("tritecnfp").style.backgroundPosition= "0 -22px";
			break;
		case "quote":
			document.getElementById("quote").style.backgroundPosition= "0 -22px";
			break;
		case "downloads":
			document.getElementById("downloads").style.backgroundPosition= "0 -22px";
			break;
		case "faq":
			document.getElementById("faq").style.backgroundPosition= "0 -22px";
			break;
		case "contact":
			document.getElementById("contact").style.backgroundPosition= "0 -22px";
			break;
		case "login":
			document.getElementById("login").style.backgroundPosition= "0 -22px";
			break;
	}
}


