
newBackgroundColor	= 'images/background.jpg';
oldBackgroundColor	= 'transparent';


function over(id) 
	{
	window.document.all[id].background = newBackgroundColor;
	}

function out(id) 
	{
	window.document.all[id].background = oldBackgroundColor;
	}


