// initialize the jquery code
$(document).ready(function(){
//close all the content divs on page load
$('.mover').hide();

// fade in and out
$('#fadeInOut').toggle(function() {
$(this).siblings('.mover').fadeIn('normal');
}, function() {
$(this).siblings('.mover').fadeOut('normal');
});

});

