/*****************************************************************************************************
This is here so the search box  will still continue to function from the ripped, static html pages we
now have as compared to the original asp.net solution we had.
******************************************************************************************************/
jQuery(document).ready(function(){
	jQuery('#aspnetForm').submit(function(event){
		event.preventDefault();
		var f = jQuery(this);
		f.unbind('submit');
		var q = jQuery('#ctl00_ccHeader_sbSearchBox_tbSearchTerm');
		f.attr('action', f.attr('action') + '?q=' + q.val());
		f.submit();
		return false;
	});
});