$(function(){
        $("#g-search-text").keydown(function(event) {
			if(event.keyCode == 13) {
				return false;
			}
		});
		$("#g-search-text").keyup(function(event) {
			if(event.keyCode == 13) {
				var seach_txt = $.trim($(this).val());
				if (seach_txt != "" && seach_txt != "Search iSelect") {
					$("#g-search-form").submit();
				}
				return false;
			}
		});
		$("#g-search-btn").click(function() {
			if ($("#g-search-text").val() == "Search iSelect") {
				$("#g-search-text").val("");
			}
			$("#g-search-form").submit();
	    });
		
		$("#g-search-text").focus(function() {
	        if ($(this).val() == "Search iSelect") {
	            $(this).removeClass("defaultTextActive");
	            $(this).val("");
	        }
	    });
	    
		$("#g-search-text").blur(function() {
	        if ($(this).val() == "") {
	            $(this).addClass("defaultTextActive");
	            $(this).val("Search iSelect");
	        }
	    });
	    
		$("#g-search-text").blur();
});	                

