// On Load
$(function(){
	// Add Events to the light weight username and password login fields. (if they exist)
	try {
		var username = $('#lw_username');
		var password = $('#lw_password');		
		var callback = function() {
			if(this.value == 'username' || this.value == 'password') {
				this.value = '';
				$(this).css('color','black');
				$(this).click = null;
			}
		}
		username.click(callback);
		password.click(callback);
	} catch(e) {}
});
