jQuery(function () {
		
		// Search help
		$('.q').focus(function () {
			$(this).attr('value', '');
		}).blur(function () {
			if (! $(this).attr('value')) {
				$(this).attr('value', $(this).attr('title'));
			}
		});
		

});
