// Display the search input box in place of the 'search' link when clicked
function showSearch() {
	jQuery("#searchlink").hide();
	jQuery("#searchinput").css("display","inline").show();
	jQuery("input:text:first").focus();
}
