// JavaScript Document
// PRELOADING IMAGES
if (document.images) {
 home_on =new Image();  home_on.src ="images/buttons/home_mo.gif"; 
 home_off=new Image();  home_off.src="images/buttons/home.gif"; 
 projects_on =new Image();  projects_on.src ="images/buttons/projects_mo.gif"; 
 projects_off=new Image();  projects_off.src="images/buttons/projects.gif"; 
 services_on =new Image();  services_on.src ="images/buttons/services_mo.gif"; 
 services_off=new Image();  services_off.src="images/buttons/services_active.gif"; 
 contact_on =new Image();  contact_on.src ="images/buttons/contact_mo.gif"; 
 contact_off=new Image();  contact_off.src="images/buttons/contact.gif"; 



}

function homeOver() { 
 if (document.images) document.homeName.src=home_on.src;
}

function homeOut() {
 if (document.images) document.homeName.src=home_off.src;
} 
function projectsOver() { 
 if (document.images) document.projectsName.src=projects_on.src;
}

function projectsOut() {
 if (document.images) document.projectsName.src=projects_off.src;
}
function servicesOver() { 
 if (document.images) document.servicesName.src=services_on.src;
}

function servicesOut() {
 if (document.images) document.servicesName.src=services_off.src;
}
function contactOver() { 
 if (document.images) document.contactName.src=contact_on.src;
}

function contactOut() {
 if (document.images) document.contactName.src=contact_off.src;
}
