// JavaScript Document

//Roll over menu
M_Over_1 = new Image
M_Out_1 = new Image
M_Over_1.src = "images/general/nav/contact_on.gif"
M_Out_1.src = "images/general/nav/contact.gif"

M_Over_2 = new Image
M_Out_2 = new Image
M_Over_2.src = "images/general/nav/who_on.gif"
M_Out_2.src = "images/general/nav/who.gif"

M_Over_3 = new Image
M_Out_3 = new Image
M_Over_3.src = "images/general/nav/residential_on.gif"
M_Out_3.src = "images/general/nav/residential.gif"

M_Over_4 = new Image
M_Out_4 = new Image
M_Over_4.src = "images/general/nav/clients_on.gif"
M_Out_4.src = "images/general/nav/clients.gif"

M_Over_5 = new Image
M_Out_5 = new Image
M_Over_5.src = "images/general/nav/commercial_on.gif"
M_Out_5.src = "images/general/nav/commercial.gif"

M_Over_6 = new Image
M_Out_6 = new Image
M_Over_6.src = "images/general/nav/prop_svcs_on.gif"
M_Out_6.src = "images/general/nav/prop_svcs.gif"

function writeMenu(){
document.write("<a href='subpages2/residential.htm' target='_self' OnMouseover='parent.document.residential.src = M_Over_3.src;status=\"Residential Services\";return true;' OnMouseout='status=\"\";");
if(pageName != "residential.htm"){
document.write("parent.document.residential.src = M_Out_3.src;");
}
document.write("'><img src='images/general/nav/residential");
if(pageName == "residential.htm"){
document.write("_on");
}
document.write(".gif' border='0' name='residential' /></a>");


document.write("<a href='subpages2/commercial.htm' target='_self' OnMouseover='parent.document.commercial.src = M_Over_5.src;status=\"Commercial Services\";return true;' OnMouseout='status=\"\";");
if(pageName != "commercial.htm"){
document.write("parent.document.commercial.src = M_Out_5.src");
}
document.write("'><img src='images/general/nav/commercial");
if(pageName == "commercial.htm"){
document.write("_on");
}
document.write(".gif' border='0' name='commercial' /></a>");


document.write("<a href='subpages2/prop_svcs.htm' target='_self' OnMouseover='parent.document.prop_svcs.src = M_Over_6.src;status=\"Property Services\";return true;' OnMouseout='status=\"\";");
if(pageName != "prop_svcs.htm"){
document.write("parent.document.prop_svcs.src = M_Out_6.src");
}
document.write("'><img src='images/general/nav/prop_svcs");
if(pageName == "prop_svcs.htm"){
document.write("_on");
}
document.write(".gif' border='0' name='prop_svcs' /></a>");


document.write("<a href='subpages2/who.htm' target='_self' OnMouseover='parent.document.who.src = M_Over_2.src;status=\"Who We Are\";return true;' OnMouseout='status=\"\";");
if(pageName != "who.htm"){
document.write("parent.document.who.src = M_Out_2.src");
}
document.write("'><img src='images/general/nav/who");
if(pageName == "who.htm"){
document.write("_on");
}
document.write(".gif' border='0' name='who' /></a>");


document.write("<a href='subpages2/clients.htm' target='_self' OnMouseover='parent.document.clients.src = M_Over_4.src;status=\"Our Clients\";return true;' OnMouseout='status=\"\";");
if(pageName != "clients.htm"){
document.write("parent.document.clients.src = M_Out_4.src");
}
document.write("'><img src='images/general/nav/clients");
if(pageName == "clients.htm"){
document.write("_on");
}
document.write(".gif' border='0' name='clients' /></a>");



document.write("<a href='subpages2/contact.php' target='_self' OnMouseover='parent.document.contact.src = M_Over_1.src;status=\"Contact Us\";return true;'   OnMouseout='status=\"\";");
if(pageName != "contact.htm"){
document.write("parent.document.contact.src = M_Out_1.src");
}
document.write("'><img src='images/general/nav/contact");
if(pageName == "contact.htm"){
document.write("_on");
}
document.write(".gif' border='0' name='contact' /></a>");



}