var liveImg;

function setUp(){
liveImg = document.getElementById('min1');

}


function imgRoll(what){
	//	alert(what);
	liveImg.style.border='1px solid #aaaaaa';
	document.getElementById(liveImg.id+'h').src='images/hand-off.jpg';
	document.getElementById(what.id+'h').src='images/hand-on.jpg';
	document.getElementById('bigImg').src=what.src;
	what.style.border='1px solid green';
	liveImg=what;
}

function bgColorIn(what){
	what.style.backgroundColor='#ffffee';
	what.style.cursor='pointer';
	what.style.cursor='hand';
}

function bgColorOut(what){
	what.style.backgroundColor='#ffffff';

}

function goToLink(what){
	var destination=what.getElementsByTagName("a")[0].href;	
	window.location=destination;
}
