<!--

if (document.images) {
	// navigation
	var news = new Image();
	news.src = '/img/topnav/news-r.gif';
	var about = new Image();
	about.src = '/img/topnav/about-r.gif';
	var contact = new Image();
	contact.src = '/img/topnav/contact-r.gif';
	var mailinglist = new Image();
	mailinglist.src = '/img/topnav/mailinglist-r.gif';
	var links = new Image();
	links.src = '/img/topnav/links-r.gif';

	var news2 = new Image();
	news2.src = '/img/newsnav/news2-r.gif';
	var press = new Image();
	press.src = '/img/newsnav/press-r.gif';

	var bio = new Image();
	bio.src = '/img/bandnav/bio-r.gif';
	var discography = new Image();
	discography.src = '/img/bandnav/discography-r.gif';
	var mp3s = new Image();
	mp3s.src = '/img/bandnav/mp3s-r.gif';
	var contactb = new Image();
	contactb.src = '/img/bandnav/contactb-r.gif';
	var info = new Image();
	info.src = '/img/bandnav/info-r.gif';
	var credits = new Image();
	credits.src = '/img/bandnav/credits-r.gif';
	var trailer = new Image();
	trailer.src = '/img/bandnav/trailer-r.gif';

	var about2 = new Image();
	about2.src = '/img/aboutnav/about2-r.gif';
	var articles = new Image();
	articles.src = '/img/aboutnav/articles-r.gif';

}

function imgRoll(imgID, NAVloc, on)
{
	if (on) {
		document.images[imgID].src = '/img/' + NAVloc + '/' + imgID + '-r.gif';
	} 
	else {
			document.images[imgID].src = '/img/' + NAVloc + '/' + imgID + '.gif';
	}
}

//-->