$(document).ready(function(){
  $('.jquery_tabs').accessibleTabs({fx:"show",fxspeed:'',syncheights:false,tabbody:'.tab-content',tabhead:'h4'});
  $('.accessibletabsanchor').parent('h4').addClass('hideme');
  $('.gallery a, a.lightbox').fancybox();
  $('#twitter').hover( function () {
    $('#twitterfeed').show('fast').getTwitter({
        userName: "sascha_hommel",
        numTweets: 5,
        loaderText: "Lade tweets...",
        slideIn: true,
        slideDuration: 750,
        showHeading: true,
        headingText: "Meine letzten Tweets.",
        showProfileLink: true,
        showTimestamp: true
    });
  }, function () { $('#twitterfeed').hide('fast'); } );
});