<!--
// PRELOADING IMAGES
if (document.images) {
 home_img_on =new Image();  home_img_on.src ="imgs/navbar/home_on.jpg"; 
 home_img_off=new Image();  home_img_off.src="imgs/navbar/home.jpg"; 
 messages_img_on =new Image();  messages_img_on.src ="imgs/navbar/messages_on.jpg"; 
 messages_img_off=new Image();  messages_img_off.src="imgs/navbar/messages.jpg"; 
 info_img_on =new Image();  info_img_on.src ="imgs/navbar/info_on.jpg"; 
 info_img_off=new Image();  info_img_off.src="imgs/navbar/info.jpg";
 ghs_img_on =new Image();  ghs_img_on.src ="imgs/navbar/ghs_on.jpg"; 
 ghs_img_off=new Image();  ghs_img_off.src="imgs/navbar/ghs.jpg";
 zerzan_img_on =new Image();  zerzan_img_on.src ="imgs/kevin2.jpg"; 
 zerzan_img_off=new Image();  zerzan_img_off.src="imgs/kevin.jpg";  
}

     //Images On
function handleOverHome() {  
 if (document.images) document.home.src=home_img_on.src;
}

function handleOverMessages() { 
 if (document.images) document.messages.src=messages_img_on.src;
}
 
function handleOverInfo() {  
 if (document.images) document.info.src=info_img_on.src;
}

function handleOverGhs() {  
 if (document.images) document.ghs.src=ghs_img_on.src;
}

function handleOverZ() {  
 if (document.images) document.zerzan.src=zerzan_img_on.src;
}

     //Images Off
function handleOutHome() { 
 if (document.images) document.home.src=home_img_off.src;
}

function handleOutMessages() {
 if (document.images) document.messages.src=messages_img_off.src;
}

function handleOutInfo() { 
 if (document.images) document.info.src=info_img_off.src;
}

function handleOutGhs() { 
 if (document.images) document.ghs.src=ghs_img_off.src;
}

function handleOutZ() { 
 if (document.images) document.zerzan.src=zerzan_img_off.src;
}

//-->
