<!-- jive script does not work with caveman browsers
if (document.images) {
        var aboutus = new Image;
        aboutus.src = "/images/nav/aboutus.gif";
        var aboutus_on = new Image;
        aboutus_on.src = "/images/nav/aboutus_on.gif";
        
        var services = new Image;
        services.src = "/images/nav/services.gif";
        var services_on = new Image;
        services_on.src = "/images/nav/services_on.gif";
        
        var homesforsale = new Image;
        homesforsale.src = "/images/nav/homesforsale.gif";
        var homesforsale_on = new Image;
        homesforsale_on.src = "/images/nav/homesforsale_on.gif";
        
        var photogallery = new Image;
        photogallery.src = "/images/nav/photogallery.gif";
        var photogallery_on = new Image;
        photogallery_on.src = "/images/nav/photogallery_on.gif";

		var testimonials = new Image;
        testimonials.src = "/images/nav/testimonials.gif";
        var testimonials_on = new Image;
        testimonials_on.src = "/images/nav/testimonials_on.gif";
        
        var contactus = new Image;
        contactus.src = "/images/nav/contactus.gif";
        var contactus_on = new Image;
        contactus_on.src = "/images/nav/contactus_on.gif";

}	
function jiveIn(imgName)       {
        document.images[imgName].src = eval(imgName + "_on.src");
}
function jiveOut(imgName)      {
        document.images[imgName].src = eval(imgName + ".src");
}
// la fin -->