/* IE6 flicker fix
-------------------------------------------------- */
try { document.execCommand("BackgroundImageCache", false, true); } catch(err){}

/* Init */

$(document).ready(function() {
	$('INPUT.onfocusclear').bind('focus',function () {
		if(!this.oldvalue){ this.oldvalue = this.value; }
		if(this.value == this.oldvalue){ this.value = ''; }
	}).bind('blur',function () {
		if(this.value == ''){ this.value = this.oldvalue; }
	});
});