/********************************************************
Name: Remove Text
Author: Terence Jefferies
Business: Glow Creative
Version 1.0
Comments: This product was created by Terence Jefferies
for text removal in small fields

********************************************************/

$(document).ready(function() {
	
	$('.search_box').focus(function() {
	
		if($(this).attr('value') == "search a name or keyword") { $(this).attr('value',''); }
	
	});
	
	$('.search_box').blur(function() {
	
		if($(this).attr('value') == "") { $(this).attr('value','search a name or keyword'); }
	
	});

});