window.onload = function() { autoFocus(); } function autoFocus(){ form = document.forms[0]; if(form){ if(form.elements[0] != null) { for(var i = 0; i < form.length; i++ ) { element = form.elements[i]; if(element.disabled || element.readOnly) continue; if(element.type == "text"){ element.focus(); element.select(); break; } if(element.type == "select-one" || element.type == 'file'){ element.focus(); break; } } } } } var calibri = { src: '/third-party/sIFR/fonts/calibri.swf' }; sIFR.useStyleCheck = true; sIFR.activate(calibri); sIFR.replace(calibri, { selector: '.call-to-action-title', wmode: 'transparent', css: [ '.sIFR-root { text-align: left; color: #749100; font-size: 24px; }', 'a { text-decoration: none; font-weight: bold; color: #749100; }', 'a:hover{color: #749100; }' ] }); sIFR.replace(calibri, { selector: '.call-to-action-link', wmode: 'transparent', css: [ '.sIFR-root { text-align: left; color: #749100; font-size: 13px; }', 'a { text-decoration: none; font-weight: bold; color: #749100; }', 'a:hover{color: #749100; }' ] });