// JavaScript Document

$(function() {
   $('#slider').cycle({ fx:     'scrollRight',  speed:   300,  timeout: 7000,   next:   '#slider',  pause:   1	 });
});

// fade in and out
$('#fadeInOut').toggle(function() {
$(this).siblings('.mover').fadeIn('slow');
}, function() {
$(this).siblings('.mover').fadeOut('slow');
});