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

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

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

function theblure(id){
    document.getElementById(id).style.backgroundColor = '#F1F1F1';
	document.getElementById(id).style.color = '#333';
}

function rollover_submit(id){
    document.getElementById(id).style.backgroundColor = '#e53138';
	document.getElementById(id).style.color = '#333';
}

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