//this highlights section that's being visited

if (location.href.indexOf('About') > 0)
    {
     document.getElementById("menuAbout").style.backgroundImage= 'url("images/menuAbout_high.jpg")';
}
else
{
	if (location.href.indexOf('Information') > 0)
		{
		 document.getElementById("menuInformation").style.backgroundImage= 'url("images/menuInformation_high.jpg")';
	}
	else
	{
		if (location.href.indexOf('Packages') > 0)
			{
			 document.getElementById("menuPackages").style.backgroundImage= 'url("images/menuPackages_high.jpg")';
		}

		else
			{
			document.getElementById("menuPackages").style.backgroundImage= 'url("images/menuPackages_home.jpg")';
			document.getElementById("menuInformation").style.backgroundImage= 'url("images/menuInformation_home.jpg")';
			document.getElementById("menuAbout").style.backgroundImage= 'url("images/menuAbout_home.jpg")';
			document.getElementById("contentTable").style.backgroundImage= 'url("images/contentBackground_home.jpg")';
			document.getElementById("menuContact").style.backgroundImage= 'url("images/menuContact_home.jpg")';

		}
	}
}
