var lf = document.getElementById('login-form'); var p = lf.passform; var u = lf.user; var n = lf.nick; var b = function() { if (p.value == '') { p.style.background = "#ffffff url('http://www.priklepni.cz/img/login/text_heslo.png') left 5px no-repeat"; } if (u.value == '') { u.style.background = "#ffffff url('http://www.priklepni.cz/img/login/text_uziv.png') left 5px no-repeat"; } if (n.value == '') { n.style.background = "#ffffff url('http://www.priklepni.cz/img/login/text_prihl.png') left 5px no-repeat"; } }; var f = function() { p.style.background = '#ffffff'; }; var f2 = function() { u.style.background = '#ffffff'; }; var f3 = function() { n.style.background = '#ffffff'; }; function login_background() { p.onfocus = f; u.onfocus = f2; n.onfocus = f3; p.onblur = b; u.onblur = b; n.onblur = b; b(); }