//Preload images
designsimage_off = new Image();
designsimage_off.src = "/images/mainnav_designs_off.gif";
designsimage_on = new Image();
designsimage_on.src = "/images/mainnav_designs_on.gif";

aboutimage_off = new Image();
aboutimage_off.src = "/images/mainnav_about_off.gif";
aboutimage_on = new Image();
aboutimage_on.src = "/images/mainnav_about_on.gif";

retailimage_off = new Image();
retailimage_off.src = "/images/mainnav_retail_off.gif";
retailimage_on = new Image();
retailimage_on.src = "/images/mainnav_retail_on.gif";

contactimage_off = new Image();
contactimage_off.src = "/images/mainnav_contact_off.gif";
contactimage_on = new Image();
contactimage_on.src = "/images/mainnav_contact_on.gif";

function navigation_hover(state, imageid){
document.getElementById(imageid).src = "/images/mainnav_" + imageid + "_" + state + ".gif";
}

var navHTML = "";
var currentURL = document.URL;
var scurrentPage  = currentURL.substr(31);

if(scurrentPage!="designs.html"){
navHTML += "<a href=\"/designs.html\"><img src=\"/images/mainnav_designs_off.gif\" id=\"designs\" width=\"63\" height=\"12\" alt=\"\" border=\"0\" onmouseover=\"navigation_hover('on','designs');\"  onmouseout=\"navigation_hover('off','designs');\"></a>";
}else{
navHTML += "<img src=\"/images/mainnav_designs_on.gif\" width=\"63\" height=\"12\" alt=\"\" border=\"0\">";
}

if(scurrentPage!="about.html"){
navHTML += "<a href=\"/about.html\"><img src=\"/images/mainnav_about_off.gif\" id=\"about\" width=\"54\" height=\"12\" alt=\"\" border=\"0\" onmouseover=\"navigation_hover('on','about');\"  onmouseout=\"navigation_hover('off','about');\"></a>";
}else{
navHTML += "<img src=\"/images/mainnav_about_on.gif\" width=\"54\" height=\"12\" alt=\"\" border=\"0\">";
}

if(scurrentPage!="retail.html"){
navHTML += "<a href=\"/retail.html\"><img src=\"/images/mainnav_retail_off.gif\" width=\"50\" height=\"12\" alt=\"\" id=\"retail\"  border=\"0\" onmouseover=\"navigation_hover('on','retail');\"  onmouseout=\"navigation_hover('off','retail');\"></a>";
}else{
navHTML += "<img src=\"/images/mainnav_retail_on.gif\" width=\"50\" height=\"12\" alt=\"\" border=\"0\">";
}

if(scurrentPage!="contact.html"){
navHTML += "<a href=\"/contact.html\"><img src=\"/images/mainnav_contact_off.gif\" id=\"contact\" width=\"61\" height=\"12\" alt=\"\" border=\"0\" onmouseover=\"navigation_hover('on','contact');\"  onmouseout=\"navigation_hover('off','contact');\"></a>";
}else{
navHTML += "<img src=\"/images/mainnav_contact_on.gif\" width=\"61\" height=\"12\" alt=\"\" border=\"0\">";
}

document.write(navHTML);