<!--
function preloadImages() 
{ 
	var d=document; 
	if(d.images)
	{ 
		if(!d.MM_p) d.MM_p=new Array();
	  var i,j=d.MM_p.length,a=preloadImages.arguments; 
	  for(i=0; i<a.length; i++)
			if (a[i].indexOf("#")!=0)
			{ 
				d.MM_p[j]=new Image; 
				d.MM_p[j++].src=a[i];
			}
	}
}

function msover(img1,ref1)
{
	app = navigator.appName;
	ver = navigator.appVersion;
	mac = ver.indexOf("Macintosh") > 0;
	win = ver.indexOf("Win") > 0;
	vnum = parseFloat(ver);
	brTest = (((app == "Netscape") && (vnum >= 3 )) || ((mac) && (app == "Microsoft Internet Explorer") && (vnum >= 3.01 )) || ((win) && (app == "Microsoft Internet Explorer") && (vnum >= 4 )))
	if (brTest)
	{
	  document.images[img1].src = ref1;
	}
}
function msout(img1,ref1)
{
	app = navigator.appName;
	ver = navigator.appVersion;
	mac = ver.indexOf("Macintosh") > 0;
	win = ver.indexOf("Win") > 0;
	vnum = parseFloat(ver);
	brTest = (((app == "Netscape") && (vnum >= 3 )) || ((mac) && (app == "Microsoft Internet Explorer") && (vnum >= 3.01 )) || ((win) && (app == "Microsoft Internet Explorer") && (vnum >= 4 )))
	if (brTest)
	{
		document.images[img1].src = ref1;
	}
}

-->
