$(document).ready(function() {

	$('.search-box').focus(function() {
		if( $(this).val() == 'Search The US Justice Watch...' ) {
			$(this).val('');	
		}
	});

	$('.search-box').blur(function() {
		if( $(this).val() == '' ) {
			$(this).val('Search The US Justice Watch...');	
		}
	});

});

function checkSearch() {
		if( $('.search-box').val() == 'Search The US Justice Watch...' || $('.search-box').val() == '' ) {
			alert('Please enter some keywords to search for');
			$('.search-box').focus()
			return false;
		}
}