sub=document.getElementById("trBSubmit");
clr=document.getElementById("trBClear");
function subber() {
sub.style.cssText='background:#BDDEFF;font-weight:600;font-size:11px;padding:4px 8px;-moz-border-radius:4px;-webkit-border-radius:4px;border:1px solid #5694D0;color:#337399;';
}
function clrer() {
clr.style.cssText='background: #BDDEFF; font-weight:600; font-size:11px; padding:4px 8px; -moz-border-radius:4px; -webkit-border-radius:4px;border:1px solid #5694D0; color:#D12F19;';
}
sub.addEventListener('mouseover', function() {sub.style.cssText=sub.style.cssText+'border:1px solid #61D85D;background:#CEFFCC;color:#41AF43;cursor:pointer;';}, false)
sub.addEventListener('mouseout', function() {subber();}, false );
clr.addEventListener('mouseover', function() {clr.style.cssText=clr.style.cssText+'border:1px solid #FB6065;background:#FBE3E4;cursor:pointer;';}, false)
clr.addEventListener('mouseout', function() {clrer();}, false );
subber();
clrer();