$(document).ready(function(){
	$("#searchText").keypress(function (e) {  
		if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {  
			document.location = "/search.aspx?search=" + $(this).val();
			return false;  
		} else return true;
	}); 

	$("#searchSubmit").click(function () {
		document.location = "/search.aspx?search=" + $("#searchText").val();
		return false;
	});

	$("#xsltsearch input.submit").click(function () {
		document.location = "/search.aspx?search=" + $("#xsltsearch input[type='text']").val();
		return false;
	});

	$("#xsltsearch input").keypress(function (e) {  
		if ((e.which && e.which == 13) || (e.keyCode && e.keyCode == 13)) {  
			document.location = "/search.aspx?search=" + $(this).val();
			return false;  
		} else return true;  
	});  

	$("ul.tabs").tabs("div.panes > div");
});
