// JavaScript Document
// execute your scripts when the DOM is ready. this is a good habit 
$(document).ready(function(){
    $('.imageLink').click(function(){
        window.location = $(this).attr('href');								   
        return false;
    }); 
});

$(function() { 
    // initialize scrollable 
    $("div.scrollable").scrollable({size:3, loop:true, speed:1000}); 
}); 
