/* CLEAR SEARCH BOX */

$(function(){
	$('#header form input').focus(function(){
		if($(this).attr('value') == 'search Tiger Computing') {
			$(this).attr('value', '');
		}
	});
});
