// JavaScript Document
function rollover(id){
    document.getElementById(id).style.backgroundColor = '#666';
}

function rollout(id){
    document.getElementById(id).style.backgroundColor = '#FFF';
}

function thefocus(id){
    document.getElementById(id).style.backgroundColor = '#fff';
	document.getElementById(id).style.borderColor = '#babc37';
	document.getElementById(id).style.color = '#000';
}

function theblure(id){
    document.getElementById(id).style.backgroundColor = '#ccc';
	document.getElementById(id).style.borderColor = '#477792';
	document.getElementById(id).style.color = '#477792';
}

function rollover_submit(id){
    document.getElementById(id).style.backgroundColor = '#babc37';
	document.getElementById(id).style.borderColor = '#babc37';
	document.getElementById(id).style.color = '#eee';
}

function rollout_submit(id){
    document.getElementById(id).style.backgroundColor = '#babc37';
	document.getElementById(id).style.borderColor = '#333';
	document.getElementById(id).style.color = '#000';
}

