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

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

function thefocus(id){
    document.getElementById(id).style.backgroundColor = '#fff';
	document.getElementById(id).style.borderColor = '#72412c';
	document.getElementById(id).style.color = '#444';
}

function theblure(id){
    document.getElementById(id).style.backgroundColor = '#fff';
	document.getElementById(id).style.borderColor = '#e98d66';
	document.getElementById(id).style.color = '#777';
}

function rollover_submit(id){
    document.getElementById(id).style.backgroundColor = '#72412c';
	document.getElementById(id).style.color = '#fff';
}

function rollout_submit(id){
    document.getElementById(id).style.backgroundColor = '#e98d66';
	document.getElementById(id).style.color = '#fff';
}
