$(document).ready(function() {
	$("#hsearch").focus(function() {
		if ($(this).val() == "search...") {
			$(this).css("color", "#333");
			$(this).val("");
		}
	});
	$("#hsearch").blur(function() {
		if ($(this).val() == "") {
			$(this).css("color", "#BBB");
			$(this).val("search...");
		}
	});
	
	//$("#featuredImageText").fadeIn(2000);
});
