$(document).ready(function() 
	{
		// email form functions
		$("#f_search").focus( function() {
			this.value = '';
			this.style.color = '#333'
			this.style.background = '#fff'
			}
		);

		$("#f_search").blur( function() {
			if(this.value == ""){
				this.value = 'Search DoInk...';
			}
			this.style.color = '#333'
			this.style.background = '#eee'
			this.style.color = '#999';
			}
		);		 
});
