/* **************** GOOGLE CUSTOM SEARCH **************** */	
/*
	Baldwin-Wallace College
	Custom Javascript Functions
*/

function siteGlobal()
{
	function googleQuickSearch() {
		//alert("hello");
		url1 = 'http://search.bw.edu/search?q=';
		q = $('.QuickSearchTextbox').val();
		url2 = '&btnG=SEARCH&site=default_collection&client=BW_frontend&output=xml_no_dtd&numgm=5&proxystylesheet=BW_frontend';
		window.location = url1 + q + url2;
	};
		$('.QuickSearchTextbox').bind("keypress",function(e) {
			if(e.keyCode==13){
				googleQuickSearch();
				return false;
			}
		});
		$('.QuickSearchButton').click(function(){
			googleQuickSearch();
			return false;
		});
}
	
Sys.WebForms.PageRequestManager.getInstance().add_pageLoaded(siteGlobal);

