$(document).ready(function() {
	//Clear the search text box when someone clicks it
	$("#keywords").click(function() {
		$(this).val("")
	});
	//Add the default back in if the box is empty
	$("#keywords").blur(function() {
		if($(this).val() == ""){
			$(this).val("Blog Search")		
		}
	
	});
});

