// Clear Search box text on focus only if default text is present
$(function() {
	$('#Search .query').focus(function() {
		if (this.value=="Search...") {
			this.value = "";
		}
	});
	$('#Search .query').blur(function() {
		if (this.value=="") {
			this.value = "Search...";
		}
	});
});


