
function highlight()
{ 
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
var strTest = sPage;
var collect
if(strTest == 'home.shtml')
{
    collect = document.getElementById('home');	
    if(collect!=null)
	collect.className ="selected";
}

//else if((strTest == 'great-offers.aspx') || (strTest=='GiftfinderLanding.aspx'))
else if(strTest == 'aboutus.shtml')
{
    collect = document.getElementById('great-offers');
    if(collect!=null)	
	collect.className ="selected";
}



}