// execute your scripts when the DOM is ready. this is mostly a good habit

// What is $(document).ready ? See: http://flowplayer.org/tools/documentation/basics.html#document_ready
$(document).ready(function() {



$("img[rel]").overlay();
});


// SELECTOR FOR SCROLLABLE SCRIPT
$(function() {

  // initialize scrollable
  $(".scrollable").scrollable();
  $(".hausScroller").scrollable();

});
