<!--
// JavaScript Document
//Hiding script from old browsers
// Netscape 3.0 compatibility test (for javascript image swapping)
compat = false;
if( parseInt( navigator.appVersion ) >= 3 ) { compat = true; }
// cache images for quick swapping
if( compat )
{
profileoff = new Image;
profileoff.src = "images/profile.gif";
profileon = new Image;
profileon.src = "images/profile2.gif";
listingsoff = new Image;
listingsoff.src = "images/listings.gif";
listingson = new Image;
listingson.src = "images/listings2.gif";
buyersoff = new Image;
buyersoff.src = "images/buyers.gif";
buyerson = new Image;
buyerson.src = "images/buyers2.gif";
sellersoff = new Image;
sellersoff.src = "images/sellers.gif";
sellerson = new Image;
sellerson.src = "images/sellers2.gif";
requestinfooff = new Image;
requestinfooff.src = "images/requestinfo.gif";
requestinfoon = new Image;
requestinfoon.src = "images/requestinfo2.gif";
areainfooff = new Image;
areainfooff.src = "images/areainfo.gif";
areainfoon = new Image;
areainfoon.src = "images/areainfo2.gif";
}

// swap images using the cached images

function glow(x, y)
{
   if( compat ) { document.images[x].src=eval(y+'.src'); }
}
//-->
	