﻿
function initSearch() { 

// Initialise the search box control on the site

	$("#q").focus(function () {
		var txt = ($(this).val() == "Search") ? "" : $(this).val();
		$(this).val(txt);
	});
	$("#q").blur(function () {
		var txt = ($(this).val() == "") ? "Search" : $(this).val();
		$(this).val(txt);
	});
	$("#go").click(function () {
	    window.location = "/search.aspx?search=" + $("#q").val();
		//$(this).parent().submit();	
		return false;
	});
	// Submit form when enter is pressed in textfield
	$("#q").keypress(function(e){
						  				  
		  if(e.which == 13){
		   window.location = "/search.aspx?search=" + $("#q").val();
			//$(this).parent().submit();	
			return false;
		   }

      });



}