function bgColorIn(what){
	what.style.backgroundColor='#ffffee';
	what.style.cursor='pointer';
	what.style.cursor='hand';
	what.style.border='1px solid #7a2b2e';
}

function bgColorOut(what){
	what.style.backgroundColor='#ffffff';
	what.style.border='1px solid #ccc';

}

function goToLink(what){
	var destination=what.getElementsByTagName("a")[0].href;	
	window.location=destination;
}

