/**
 * @depends jquery.min.js
 * @depends jquery-ui.min.js
 * @depends jquery.flow.1.2.min.js
 * @depends imageinfo/exif.js
 * @depends imageinfo/imageinfo.js
 * @depends tooltip.js
 */


$(function() {
    
    $("div#controller").jFlow({
        slides: "#slides"
        //width: "648px",
        //height: "480px"
    });

    $("#accordion").accordion({
        header: 'a.header_with_links',
        active: false,
        alwaysOpen: false,
        autoheight: true,
        animated: 'bounceslide'
      });


    $('div.item').each(function(i){
      $(this).tt({
          vAlign: 'absCenter',
          align: 'absCenter',
          zoom: true,
          fadeIn: 100,
          showEvent: 'click',
          hideEvent: 'mouseout',
          timeOut: 0
      });
    });


    


});
