// JavaScript Document

function swap_bg(status, src, img)	{
	
	if (status == 1)	{
		document.getElementById(src).style.backgroundColor = img;
		//alert("nav_"+img+".gif");
	} else {
		document.getElementById(src).style.backgroundColor = "#fff";		
	}
}
