$(document).ready(function() {
	$('#SearchTerm').val('Book Search').addClass('placeholder').focus(function() {
		if ($('#SearchTerm').val() == 'Book Search') {
			$('#SearchTerm').val('').removeClass('placeholder');
		}
	}).blur(function() {
		if ($('#SearchTerm').val() == '') {
			$('#SearchTerm').val('Book Search').addClass('placeholder');
		}
	});
	$('#SearchForm').submit(function() {
		if ($('#SearchTerm').val() == 'Book Search') {
			$('#SearchTerm').val('').removeClass('placeholder');
			window.location = '/categories';
			return false;
		}
	});	
});
