jQuery(document).ready(function(){
// show 1 testimonial
speed = 500;

jQuery('ul#testimonials li').hide(); jQuery('ul#testimonials li:first').show();

// testimonial fader
function testimonials(){
setTimeout(function(){
					first = jQuery('ul#testimonials li:first').html();
					jQuery('ul#testimonials li:first').remove();
					jQuery('ul#testimonials').append('<li>'+first+'</li>');
					jQuery('ul#testimonials li').hide();
					jQuery('ul#testimonials li:first').show();
					testimonials();
    }, 10000); 
};

testimonials();

// bitmap button fader
jQuery('#bookWidget span').mouseenter(function(){jQuery(this).stop().animate({opacity: 0}, speed);});
jQuery('#bookWidget span').mouseleave(function(){jQuery(this).stop().animate({opacity: 1}, speed);});

});