/* Anstine Plugins */
$(document).ready(function() {
   	// Search focus remove
	$("#search-field").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	
}); // end doc ready