jQuery(document).ready(function($){

  // if( $('#twitter_update_list').hasClass('tweets') ){
    // setTimeout(function(){ $('#twitter_update_list').slideDown(); }, 1500);
  // }

  $(window).hashchange( function(){
    $('#content-right').load("ajax.php?p="+location.hash.substr(1), function(){
      setTimeout(function(){
        //autoscroll if necessary
        if( $(window).scrollTop() > 700 ){
          $.scrollTo(0, 350);
        }
        //add or remove css class 'home'
        if(location.hash == '' || location.hash == '#' || location.hash == '#home'){
          $('#container').addClass('home');
        }else if(location.hash == '#programma'){
          $('#container').addClass('programma');
          $('#container').removeClass('home');
        }else{
          $('#container').removeClass('home');
          $('#container').removeClass('programma');
        }
      }, 50);
      $('.menu').find("a").removeClass('hover');
      $('.menu').find("a[href="+location.hash+"]").addClass('hover');
    });
  });
  $(window).hashchange();

});
