// JavaScript Document

// Changes background color of submit button in quick form
function mouseOver()
{
document.getElementById("qf_send").style.backgroundColor ="#9f0";
document.getElementById("qf_send").style.color ="#000";
}
function mouseOut()
{
document.getElementById("qf_send").style.backgroundColor ="#3998e5";
document.getElementById("qf_send").style.color ="#fff";
}
