nl = document.getElementById("submit");

function apply_mo(){ nl.onmouseover = function(){ this.className='hover'; this.style.cursor='pointer';}
nl.onmouseout = function(){ this.className='submit'; }
}
window.onload = apply_mo; 