
 $(document).ready(function() {
	$('#slideToggle').click(function(){
		// by calling sibling, we can use same div for all demos
		$(this).siblings('.mover').slideToggle();
	});
	
	$('.pusher-hide').click(function(){
		$('.mover').slideUp();
	})	

});


