; 
$(function(){
    $('#sliderdiv').adjustableSlider({callback: function() {}, selectors: {content: '.slide', heading: 'h2'}});
});

$(document).ready(function(){
    s=$('#sliderdiv ul li h2 a');
    h="";
    if((window.location.hash).match('([0-9]+)')) {
        h=(window.location.hash).match('([0-9]+)');
        if(s.length>0) 
            $(s[h[1]]).trigger('click');
    }
});
