// JavaScript Document
// footercolor
function fotterColors(a){
		if(a == 0){
			document.getElementById("footer").style.backgroundColor="#9ACC99";
		}
		if(a == 1){
			document.getElementById("footer").style.backgroundColor="#9ACC99";
		}
		if(a == 2){
			document.getElementById("footer").style.backgroundColor="#33bbee";
		}
		if(a == 3){
			document.getElementById("footer").style.backgroundColor="#9ACC99";
		}
		if(a == 4){
			document.getElementById("footer").style.backgroundColor="#6BB5CC";
		}
		if(a == 5){
			document.getElementById("footer").style.backgroundColor="#c4c46e";
		}
}