function rollover(id){
	
	
	document.getElementById(id).style.backgroundColor = "#CCCCCC";

}

function rolloff(id){

	document.getElementById(id).style.backgroundColor = "#FFFFFF";

	
}
/*
window.onload = function(){
	
	var sPath = window.location.pathname;
	var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
	
	try{
		if(sPage == "buyers.php"){
			document.getElementById("head_nav_buyers").style.backgroundColor = "#00539f";
			document.getElementById("head_nav_buyers_img").src = "assets/images/icons/buyers_sel.png";
			document.getElementById("head_nav_buyers").onmouseover = function(){};
			document.getElementById("head_nav_buyers").onmouseout = function(){};
		}
		else if(sPage == "sellers.php"){
			document.getElementById("head_nav_sellers").style.backgroundColor = "#00539f";
			document.getElementById("head_nav_sellers_img").src = "assets/images/icons/sellers_sel.png";
			document.getElementById("head_nav_sellers").onmouseover = function(){};
			document.getElementById("head_nav_sellers").onmouseout = function(){};
		}
		else if(sPage == "featured.php"){
			document.getElementById("head_nav_featured").style.backgroundColor = "#00539f";
			document.getElementById("head_nav_featured_img").src = "assets/images/icons/featured_sel.png";
			document.getElementById("head_nav_featured").onmouseover = function(){};
			document.getElementById("head_nav_featured").onmouseout = function(){};
		}
		else if(sPage == "aboutus.php"){
			document.getElementById("head_nav_about").style.backgroundColor = "#00539f";
			document.getElementById("head_nav_about_img").src = "assets/images/icons/aboutus_sel.png";
			document.getElementById("head_nav_about").onmouseover = function(){};
			document.getElementById("head_nav_about").onmouseout = function(){};
		}else{
			document.getElementById("head_nav_home_img").src = "assets/images/icons/home_sel.png";
			document.getElementById("head_nav_home").style.backgroundColor = "#00539f";
			document.getElementById("head_nav_home").onmouseover = function(){};
			document.getElementById("head_nav_home").onmouseout = function(){};
		}
	}catch(Exception){
	}
}
*/
