try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}
var Site = {
    load : function() {
        var items = $$('#quickregister .text');
        if (items.length > 0)
            Site.attachDefaultText(items[0]);
    },
    attachDefaultText : function(control) {
        if (control.value!="") {
            var old = control.value;
            control.addEvent('focus',function() { if (control.value==old) { control.value = ''; } });
            control.addEvent('blur',function() { if (control.value=='') { control.value = old; } });
        }
    }
}

window.addEvent('load',Site.load);
