// JavaScript Document
$(document).ready(function() {
	/*Set initial state */
	$('#search').css("display","none");	
	
	
   $('#search-all a').click(function(){
     $('#search').slideToggle(200);
	/* Toggles the .down class for the button, which will swap the background image */
	$(this).toggleClass("down");
	return false;

	});
 });
