$(document).ready(function(){
	$('.pusher').each(function(){
		var $this = $(this);
		$this.next().hide();
		$this.click(function(){
			$this.next().slideToggle(450);//Speed
			return false;
		});
	});
});

