// JavaScript Document
	var cA = new Array();
	cA[0] = "#E9E9E9"
	cA[1] = "#aebdcf"
	cA[2] = "#cbd3dc"
	cA[3] = "#dce1e7"
	cA[4] = "#E6EAEE"
function changeColor(obj,c){
	
	obj.style.backgroundColor = cA[c-1];
	//alert(cA[c]);
}
function changeColorOut(obj,c){
	obj.style.backgroundColor = cA[c];
	//alert(cA[c]);
}

function changeBG(obj,img){
	//alert(obj+" "+img)
	obj.style.backgroundImage = "url(images/"+img+")";
	obj.style.color = "#ffffff";
}