function selectItem1(theItem)
{
	var fca=document.getElementById("fca"+theItem);
	var fcb=document.getElementById("fcb"+theItem);
	
	fca.innerHTML='<img src="/images/left_arrow.png" width="14" height="21" alt="&gt;" border="0" />';
	fca.style.backgroundColor='#e8e8e8';
	fcb.style.backgroundColor='#e8e8e8';
}

function deSelectItem1(theItem)
{
	var fca=document.getElementById("fca"+theItem);
	var fcb=document.getElementById("fcb"+theItem);
	
	fca.innerHTML='';
	fca.style.backgroundColor='white';
	fcb.style.backgroundColor='white';
}

function selectItem2(theItem)
{
	var bra=document.getElementById("bra"+theItem);
	var brb=document.getElementById("brb"+theItem);
	
	bra.innerHTML='<img src="/images/left_arrow.png" width="14" height="21" alt="&gt;" border="0" />';
	bra.style.backgroundColor='#e8e8e8';
	brb.style.backgroundColor='#e8e8e8';
}

function deSelectItem2(theItem)
{
	var bra=document.getElementById("bra"+theItem);
	var brb=document.getElementById("brb"+theItem);
	
	bra.innerHTML='';
	bra.style.backgroundColor='white';
	brb.style.backgroundColor='white';
}
