

function tdSelect( elementID, theState ){
	if( theState == "on" ){
		document.getElementById( elementID ).style.cursor = 'hand';
		document.getElementById( elementID ).style.background = '#D9D9A9';
	} else {
		document.getElementById( elementID ).style.backgroundColor="#E5E5B2";
	}
}

//rollover button

function btn(imgNum,imgSrc) {
	document.images[imgNum].src = imgSrc;
	if(imgSrc=="#ffffff")
	{
	document.getElementById(imgNum + '_bg').style.backgroundColor="red";
	}
	else
	{
	
	document.getElementById(imgNum + '_bg').style.backgroundImage="black";
	}	
}



