// right hand side big issues links

/*********************** ROLLOVERS & STATUS ***********************/

	if (document.images) {
		but6 = new Image();
		but6.src = "images/photobar/photo1_on.jpg";

		but7 = new Image();
		but7.src = "images/photobar/photo2_on.jpg";
		
		but8 = new Image();
		but8.src = "images/photobar/photo3_on.jpg";
		
		but9 = new Image();
		but9.src = "images/photobar/photo4_on.jpg";						

		but10 = new Image();
		but10.src = "images/photobar/photo5_on.jpg";
		
	}

	function rollover(imgDocID,imgObjName) {
		if (document.images) {
			tempImg = document.images[imgDocID].src;
			document.images[imgDocID].src = eval(imgObjName + ".src");
		}
	}

	function rollback(imgDocID) {
		if (document.images) { document.images[imgDocID].src = tempImg; }
	}
/****************************** THE END ******************************/

