/* @author Kania */
function mouseOver(z)
{
	var r = Math.floor(Math.random()*101) + 50;
	var g = Math.floor(Math.random()*101) + 50;
	var b = Math.floor(Math.random()*101) + 50;
 	var wart = ( "rgb(" + r + "," + g + "," + b + ")" );
   	z.style.background = wart;
}
function mouseOut(a)
{
   	a.style.background = "rgb(255,255,255)";
}		
