var MDDA = {

  init: function()
  {
    this.initSlideshow(); 
  },
  initSlideshow:function()
  {
    $("#slideshow-items").carouFredSel({
      width:639,
      padding:0,
      scroll: {
        onAfter: function(oldItms, newItems){
          var item = newItems[0];          
          $('#slideshow-box h2').text($('h2', item).text()).fadeIn();
          $('#slideshow-box div.info').html($('div.info', item).html()).fadeIn();
        },
        onBefore:function(){
          $('#slideshow-box h2').fadeOut();
          $('#slideshow-box div.info').fadeOut();
        }
      },
      items: {
        visible: 1,
        width: 639,
        height: 389
      },
      auto: {
        pauseDuration: 8000,
        delay: 8000
      },
      pagination: "#slideshow-pagination"
    });    
  }
}
