// Check if we're on the Hosting Solutions Page
if (location.href.indexOf("hosting-solutions.aspx") != -1){
document.getElementById("link1").style.backgroundImage = "url(images/bg-nav-over.gif)";
document.getElementById("link1").style.backgroundRepeat="repeat-x";
}

// Check if we're on the Plan Comparisons Page
if (location.href.indexOf("plan-comparisons.aspx") != -1){
document.getElementById("link2").style.backgroundImage = "url(images/bg-nav-over.gif)";
document.getElementById("link2").style.backgroundRepeat="repeat-x";
}

// Check if we're on the Sample Packages Page
if (location.href.indexOf("sample-packages.aspx") != -1){
document.getElementById("link3").style.backgroundImage = "url(images/bg-nav-over.gif)";
document.getElementById("link3").style.backgroundRepeat="repeat-x";
}

// Check if we're on the Data Center Page
if (location.href.indexOf("data-center.aspx") != -1){
document.getElementById("link4").style.backgroundImage = "url(images/bg-nav-over.gif)";
document.getElementById("link4").style.backgroundRepeat="repeat-x";
}

// Check if we're on the Testimonials Page
if (location.href.indexOf("testimonials.aspx") != -1){
document.getElementById("link5").style.backgroundImage = "url(images/bg-nav-over.gif)";
document.getElementById("link5").style.backgroundRepeat="repeat-x";
}

// Check if we're on the Contact Us Page
if (location.href.indexOf("hosting-services.aspx") != -1){
document.getElementById("link6").style.backgroundImage = "url(images/bg-nav-over.gif)";
document.getElementById("link6").style.backgroundRepeat="repeat-x";
}