// 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 )
{
	eastonon = new Image();
	eastonon.src = "http://hunttv.com/public/images/easton-over.png";
	eastonoff = new Image();
	eastonoff.src = "http://hunttv.com/public/images/home-logo-easton.png";

}

// swap images using the cached images
function brillar(x, y)
{
	if( compat ) { document.images[x].src=eval(y+'.src'); }
}