var arrDomains = new Array("www.greenleaforthopaedics.com", 
"www.greenleaforthopedics.com",
"greenleaforthopaedics.com",
"greenleaforthopedics.com",
"www.libertyvilleortho.com",
"www.libertyvilleorthopaedics.com",
"www.libertyvilleorthopedics.com",
"www.gurneeorthopaedics.com",
"www.gurneeorthopedics.com",
"www.gurneeortho.com",
"libertyvilleortho.com",
"libertyvilleorthopaedics.com",
"libertyvilleorthopedics.com",
"gurneeorthopaedics.com",
"gurneeorthopedics.com",
"gurneeortho.com");

for (var i=0; i<arrDomains.length; i++)
{
	if (location.host == arrDomains[i])
	{
		location.replace('http://www.greenleafortho.com'+location.pathname);
	}
}

/*
if (location.host == "www.greenleaforthopaedics.com" || location.host == "www.greenleaforthopedics.com" || location.host == "greenleaforthopaedics.com" || location.host == "greenleaforthopedics.com")
{
	location.replace('http://www.greenleafortho.com'+location.pathname);
}
*/



if (document.images)
{
	var home0 = new Image();
	home0.src = "images/imgNavHomeOff.gif";
	var home1 = new Image();
	home1.src = "images/imgNavHomeOn.gif";
	var about0 = new Image();
	about0.src  = "images/imgNavAboutOff.gif";
	var about1 = new Image();
	about1.src  = "images/imgNavAboutOn.gif";
	var education0 = new Image();
	education0.src  = "images/imgNavEducationOff.gif";
	var education1 = new Image();
	education1.src  = "images/imgNavEducationOn.gif";
	var office0 = new Image();
	office0.src  = "images/imgNavOfficeOff.gif";
	var office1 = new Image();
	office1.src  = "images/imgNavOfficeOn.gif";
	var faq0 = new Image();
	faq0.src = "images/imgNavFaqOff.gif";
	var faq1 = new Image();
	faq1.src = "images/imgNavFaqOn.gif";
	var testimonials0 = new Image();
	testimonials0.src = "images/imgNavTestimonialsOff.gif";
	var testimonials1 = new Image();
	testimonials1.src = "images/imgNavTestimonialsOn.gif";
	var links0 = new Image();
	links0.src = "images/imgNavLinksOff.gif";
	var links1 = new Image();
	links1.src = "images/imgNavLinksOn.gif";
	var news0 = new Image();
	news0.src = "images/imgNavNewsOff.gif";
	var news1 = new Image();
	news1.src = "images/imgNavNewsOn.gif";
	var contact0 = new Image();
	contact0.src = "images/imgNavContactOff.gif";
	var contact1 = new Image();
	contact1.src = "images/imgNavContactOn.gif";
}

function rollOut(imgName) 
{
    if (document.images) 
    {
        document[imgName].src = eval(imgName+"0.src");
    }
}

function rollIn(imgName)
{
    if (document.images)
    {
        document[imgName].src = eval(imgName+"1.src");
    }
}