
			$(document).ready(function() {
				$("#search").attr("value", "Search");
				var text = "Search";
			
				$("#search").focus(function() {
					$(this).addClass("active");
					if($(this).attr("value") == text) $(this).attr("value", "");
				});
			
				$("#search").blur(function() {
					$(this).removeClass("active");
					if($(this).attr("value") == "") $(this).attr("value", text);
				});
			});

