function rollOver(str1,str2,str3,num){
	if (num == 1){ 

		x1=eval("document."+ str1);
		x1.src=eval("str3");
		x1.width=2;
		x1.height=50;
		x2=eval("document."+str2);
		x2.src=eval("str3");
		x2.width=2;
		x2.height=50;
	}
	else{
		x1=eval("document."+ str1);
		x1.src=eval("str3");
		x1.width=2;
		x1.height=15;
		x2=eval("document."+str2);
		x2.src=eval("str3");
		x2.width=2;
		x2.height=15;
	}
}	

function mouseover(id){
	id.className=id.className+'Over';
}

function selectedImage(img1,img2,img3,div1,imageToDisplay,divHeader,text,divContent,description){
	document.images[img1].src=img3;
	document.images[img2].src=img3;
	/*document.getElementById(div1).innerHTML=eval("<img src="+ imageToDisplay+ "width="640" />");*/
	document.getElementById(divHeader).innerHTML=text;
	document.getElementById(divContent).innerHTML=description;
}


function imgOver (id) {
	id.className='imageStyleOver';
}

function imgOut (id) {
	id.className='imageStyle';
}

