// JavaScript Document
 $(document).ready(function(){
    
    //close all the content divs on page load
    $('.mover').hide();
    
    //Switch the "Open" and "Close" state per click
	$(".pusher").toggle(function(){
		$(this).addClass("active");
	    }, function () {
		$(this).removeClass("active");
	});
	$(".pusher_open").toggle(function(){
		$(this).addClass("active_open");
	    }, function () {
		$(this).removeClass("active_open");
	});

    // toggle slide
    $('.pusher').click(function(){
        $(this).next('.mover').slideToggle();
    });
    $('.pusher_open').click(function(){
        $(this).next('.mover_open').slideToggle();
    });
});
