																														
$(document).ready(function(){
	
	$("input").focus(function() {
		if( this.value == this.defaultValue && this.type != 'submit' ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	$("textarea").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
	$('#gform_1 select').sSelect();
	
	$('ul.newList li:odd a').addClass('odd');
	
	$('#gform_1').submit(function(){
		$("input").value = "";
	});
	
});
