// initialize the jquery code
 $(document).ready(function(){

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

});

// initialize the jquery code

$('#slideToggle2').click(function(){
//close all the content divs on page load
$('.mover').hide();

$(this).siblings('.mover2').slideToggle();

});


// initialize the jquery code
$('#slideToggle3').click(function(){
//close all the content divs on page load
$('.mover').hide();
$('.mover2').hide();


$(this).siblings('.mover3').slideToggle();
});

// initialize the jquery code
$('#slideToggle2').click(function(){
//close all the content divs on page load
$('.mover').hide();
$('.mover3').hide();


});

// initialize the jquery code
$('#slideToggle').click(function(){
//close all the content divs on page load
$('.mover2').hide();
$('.mover3').hide();


});



