jQuery(document).ready(function() 
{
		
		/* Search box friendliness
		---------------------------------------------
		A search box should have some grey default 
		helper text that disappears upon focus.
		---------------------------------------------*/
		// set the helper text
		jQuery('#q').addClass('helper').val('type search here');
		
		// handle the focus event
		jQuery('#q').focus(function() 
		{
				// check if the helper text is in the field
				if(jQuery(this).val() == 'type search here') 
				{
						// if it's the helper text remove the style
						jQuery(this).removeClass('helper');
						// and the text itself
						jQuery(this).val('');
				}
		
		});

		
});
