$(window).load(function() {
       $('#slideshow').nivoSlider({
        effect: 'random', // Specify sets like: 'fold,fade,sliceDown'
        directionNav: false, // Next & Prev navigation
        directionNavHide: false, // Only show on hover
		pauseTime: 5000,
        controlNav: false, // 1,2,3... navigation
        controlNavThumbs: false, // Use thumbnails for Control Nav
        controlNavThumbsFromRel: false, // Use image rel for thumbs
        controlNavThumbsSearch: '.jpg', // Replace this with...
        controlNavThumbsReplace: '_thumb.jpg', // ...this in thumb Image src
        keyboardNav: true, // Use left & right arrows
        pauseOnHover: true, // Stop animation while hovering
        manualAdvance: false, // Force manual transitions
        captionOpacity: 0.8 // Universal caption opacity
    });
});

jQuery(document).ready(function() {
  jQuery(".gigBottom").hide();
  //toggle the componenet with class msg_body
  jQuery(".gigTop").click(function()
  {
    jQuery(this).next(".gigBottom").slideToggle(500);
  });
});

