$(document).ready(function () {
  
  Shadowbox.init({
    handleOversize: "drag",
  });

  $('.scrollto').click(function(){
    $.scrollTo( this.hash , 1000);
    return false;
  });
  
  $('.thumbs').find('img').live('mouseenter',
    function() {
      $(this).animate({
        opacity: 1
      }, 200 );
    }
  );
  $('.thumbs').find('img').live('mouseleave',
    function() {
      $(this).animate({
        opacity: .25
      }, 400 );
    }
  );
  $('.suite').find('.item').live('mouseenter',
    function() {
      $(this).find('.box').animate({
        opacity: .9
      }, 200 );
    }
  );
  $('.suite').find('.item').live('mouseleave',
    function() {
      $(this).find('.box').animate({
        opacity: 0
      }, 400 );
    }
  );

  $(".scrollable").scrollable().navigator();
  
});
