//IMAGE ROLLOVERS
function imgOn(imgName)
{
	document[imgName].src = eval(imgName + "_on.src");
}
function imgOff(imgName) { document[imgName].src = eval(imgName + "_off.src"); }

//IMAGE CACHING
var oImgPath = new Object();
oImgPath.topnav = "images/";

function cacheImg(name,src,rollover,type){
	src = '../' + src;
	if (!type) var type = "gif";
	if (rollover==true){
		eval(name + "_off =  new Image");
		eval(name + "_off.src = \'" + src + name + "_off." + type + "\'");
		eval(name + "_on =  new Image");
		eval(name + "_on.src = \'" + src + name + "_on." + type + "\'");
	} else {
		eval(name + " = new Image");
		eval(name + ".src = \'"+src+name+"."+type+"\'");
	}
}




//-----Top Nav
cacheImg('home',oImgPath['topnav'],true);
cacheImg('faq',oImgPath['topnav'],true);
cacheImg('site',oImgPath['topnav'],true);
cacheImg('contact',oImgPath['topnav'],true);
cacheImg('mag',oImgPath['topnav'],true);
cacheImg('about',oImgPath['topnav'],true);
cacheImg('why',oImgPath['topnav'],true);
cacheImg('message',oImgPath['topnav'],true);
cacheImg('testimonials',oImgPath['topnav'],true);
cacheImg('developer',oImgPath['topnav'],true);
cacheImg('kiss',oImgPath['topnav'],true);
cacheImg('mortgage',oImgPath['topnav'],true);
cacheImg('property',oImgPath['topnav'],true);
cacheImg('sponsorships',oImgPath['topnav'],true);
cacheImg('guru',oImgPath['topnav'],true);
cacheImg('press',oImgPath['topnav'],true);
cacheImg('careers',oImgPath['topnav'],true);
cacheImg('print',oImgPath['topnav'],true);
cacheImg('email',oImgPath['topnav'],true);
cacheImg('go',oImgPath['topnav'],true);
cacheImg('introduction',oImgPath['topnav'],true);
cacheImg('specifications',oImgPath['topnav'],true);
cacheImg('map',oImgPath['topnav'],true);
cacheImg('check',oImgPath['topnav'],true);
cacheImg('pre',oImgPath['topnav'],true);
cacheImg('mls',oImgPath['topnav'],true);
cacheImg('team',oImgPath['topnav'],true);
cacheImg('int',oImgPath['topnav'],true);