$(document).ready(function () {
  $("#themen, #archive").hover(
    function () {
      $(this).find('ul').show();
    }, 
    function () {
      $(this).find('ul').hide();
    }
  );
  
  $('.podcastshow .viewport').carousel({
    btnPrev: '.podcastshow #previous-podcasts',
 		btnNext: '.podcastshow #next-podcasts',
    speed: 200
 	});
  
  $("#s-submit").hover(function(){
      $(this).attr('src', '/wp-content/themes/daydream_de_sie/daydream_de_sie/images/search-submit-hover.gif');
    },
    function(){
      $(this).attr('src', '/wp-content/themes/daydream_de_sie/daydream_de_sie/images/search-submit.gif');
    }
  );
  $("#s-submit").focus(function(){
    $(this).attr('src', '/wp-content/themes/daydream_de_sie/daydream_de_sie/images/search-submit-hover.gif');
  });
  $("#s-submit").blur(function(){
    $(this).attr('src', '/wp-content/themes/daydream_de_sie/daydream_de_sie/images/search-submit.gif');
  });
});
