//ROLLOVER CODE STARTS HERE


if (document.images) {
home_off = new Image
home_on = new Image

singer_off = new Image
singer_on = new Image

appear_off = new Image
appear_on = new Image

about_off = new Image
about_on = new Image

merch_off = new Image
merch_on = new Image

news_off = new Image
news_on = new Image

photo_off = new Image
photo_on = new Image

gallery_off = new Image
gallery_on = new Image

fanclub_off = new Image
fanclub_on = new Image

links_off = new Image
links_on = new Image

contact_off = new Image
contact_on = new Image


home_off.src = "pix/home.gif"
home_on.src = "pix/home_over.gif"

singer_off.src = "pix/singer.gif"
singer_on.src = "pix/singer_over.gif"

appear_off.src = "pix/appear.gif"
appear_on.src = "pix/appear_over.gif"

about_off.src = "pix/about.gif"
about_on.src = "pix/about_over.gif"

merch_off.src = "pix/merch.gif"
merch_on.src = "pix/merch_over.gif"

news_off.src = "pix/news.gif"
news_on.src = "pix/news_over.gif"

photo_off.src = "pix/photo.gif"
photo_on.src = "pix/photo_over.gif"

gallery_off.src = "pix/gallery.gif"
gallery_on.src = "pix/gallery_over.gif"

fanclub_off.src = "pix/fanclub.gif"
fanclub_on.src = "pix/fanclub_over.gif"

links_off.src = "pix/links.gif"
links_on.src = "pix/links_over.gif"

contact_off.src = "pix/contact.gif"
contact_on.src = "pix/contact_over.gif"
}





function chgImg(imgField,newImg) {
	if (document.images) {
		document[imgField].src= eval(newImg + ".src")
	}
}

//ROLLOVER CODE STARTS HERE


//ROTATE HEADER CODE STARTS HERE

header = new Array("pix/rotate/pic1.jpg" , "pix/rotate/pic2.jpg" , "pix/rotate/pic3.jpg" , "pix/rotate/pic4.jpg" , "pix/rotate/pic5.jpg")

imgCt = header.length

function choosePic() {
if (document.images) {
randomNum = Math.floor((Math.random() * imgCt))
document.header_pic.src = header[randomNum]
}
}


//ROTATE HEADER CODE STARTS HERE
