/* CLEAR SEARCH BOX */

jQuery(function(){
	jQuery('#header form input').focus(function(){
		if(jQuery(this).attr('value') == 'Enter a search term') {
			jQuery(this).attr('value', '');
		}
	});
	
	jQuery('a.new-window').click(function() {
		$(this).attr('target', '_blank');
		return true;
	});
});
