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