$(function() {  $("#gallery")    .scrollable({      size: 1    })    .autoscroll({      autoplay: true,      autopause:true    })    .circular()    .navigator()    .mousewheel(200);  $(".items img").tooltip({    tip: ".items .info",    position: "bottom center",    offset: [-100,0],    effect: "slide",    relative: true  })  $("#gallery img").reflect({    height: 0.15,    opacity: 0.2  });  $('ul#navigation').superfish({    autoArrows: false  });  $(".project-gallery-lightbox .item a[rel^='prettyPhoto']")    .prettyPhoto({      theme:'dark_rounded'  });  $('#search-input').autofill({    value: "Search...",    defaultTextColor:"#2D363B"  });  var navWidth = $(".navi").width();  var galWidth = $("#gallery").width();  $(".navi").css({'left' : ((galWidth - navWidth) / 2) + "px"});});
