<!-- jive script does not work with caveman browsers
if (document.images) {
        var filming = new Image;
        filming.src = "/images/nav/filming.gif";
        var filming_on = new Image;
        filming_on.src = "/images/nav/filming_on.gif";

		var closerlook = new Image;
        closerlook.src = "/images/nav/closerlook.gif";
        var closerlook_on = new Image;
        closerlook_on.src = "/images/nav/closerlook_on.gif";

		var locations = new Image;
        locations.src = "/images/nav/locations.gif";
        var locations_on = new Image;
        locations_on.src = "/images/nav/locations_on.gif";

		var listings = new Image;
        listings.src = "/images/nav/listings.gif";
        var listings_on = new Image;
        listings_on.src = "/images/nav/listings_on.gif";

		var resources = new Image;
        resources.src = "/images/nav/resources.gif";
        var resources_on = new Image;
        resources_on.src = "/images/nav/resources_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 -->