$(document).ready(function(){ /* Home Page */ /* ================================================================================ */ // for the home scrolly bit $("#home_left").scrollable({ size: 1, speed: 1000 }).circular().autoscroll({autoplay: true,steps:1,interval:10000}).mousewheel().navigator(); // fadey roll overs on home page $("div.items a").hover( function () { $(this).fadeTo("normal", 0.33); }, function(){ $(this).fadeTo("normal", 1); }); $("#slideshow a").click(function(event){ event.preventDefault(); }); });