$(document).ready(function() {
	
	//search again link is only visible to users with js enabled
	//users with js disabled see the open search box so do need this link
	$('#slider').before('<h2 id="showit"><a href="{path=search}">Search again</a></h2>').hide();
	
	$('#showit a').click(function() {
		$(this).closest('h2').remove();
		$('.search_results #searchbox .pad').css('padding', '35px 20px');
		$('#slider').slideDown('slow');
		return false;
		
	});	
});

