//preload rollover images
/*window.onload = rolloverInit;

function rolloverInit() {
	for (var i=0; i<document.links.length; i++)
	{
		var linkObj = document.links[i];
		if (linkObj.id){
			var imgObj = document.getElementById(linkObj.id + "Img");
			if (imgObj){
				setupRollover(linkObj,imgObj);
			}
		}
	}
}
function setupRollover(thisLink,thisImage){
	thisLink.imgToChange = thisImage;
	thisLink.onmouseout = function(){
		this.imgToChange.src = this.outImage.src;
	}
	thisLink.onmouseover = function(){
		this.imgToChange.src = this.overImage.src;
	}
	
	thisLink.outImage = new Image();
	thisLink.outImage.src = thisImage.src;
	
	thisLink.overImage = new Image();
	thisLink.overImage.src = "images/" + thislink.id +"on.jpg";
}

*/

//harvest links
var news=document.getElementById("news");
var music=document.getElementById("music");
var about=document.getElementById("about");
var myspace=document.getElementById("myspace");


//harvest content div - where the background image will be replaced
var content=document.getElementById("content");




//set up the links to change the images and descriptions
	news.onmouseover=function(){
		
		content.style.backgroundImage="url(images/TheBandDriveway_2.jpg)";
				
}

news.onmouseout=function(){
	
	content.style.backgroundImage="url(images/TheBandDriveway.jpg)";
	
	}
	
	music.onmouseover=function(){
		
		content.style.backgroundImage="url(images/travelinglightcover.jpg)";
				
}

music.onmouseout=function(){
	
	content.style.backgroundImage="url(images/TheBandDriveway.jpg)";
	
	}
	
	about.onmouseover=function(){
		
		content.style.backgroundImage="url(images/about.jpg)";
				
}

about.onmouseout=function(){
	
	content.style.backgroundImage="url(images/TheBandDriveway.jpg)";
	
	}
	
		myspace.onmouseover=function(){
		
		content.style.backgroundImage="url(images/TheBandDrivewayeyeballs.jpg)";
				
}

myspace.onmouseout=function(){
	
	content.style.backgroundImage="url(images/TheBandDriveway.jpg)";
	
	}
	

