$(document).ready(function(){	

	$("#siteSearchButton").click(function(){
		var str=$("#siteSearchString").val();
		if(empty(str)){
			$("#siteSearchString").css("border-color", "red");
			return false;
		}
		document.location="/advanced_search_result.php?keywords="+str;
	});
});
