jQuery(document).ready(function(){

    //slideshow
    jQuery('#slideshow').cycle({ timeout: 6000, fx: 'fade' });

    // EventListener
    jQuery('#play').click(function() {
	  jQuery('#listen-box-inner').fadeOut('slow', function() {
		jQuery('#audioplayer').css({ 'display': 'inline'});
	  });
    });

});
