jQuery(document).ready(function(){
	jQuery('#sidebar_slider') 
		.before('<div id="sidebar_slider_nav">') 
		.cycle({ 
		    fx:     'scrollRight', 
		    speed:  'slow', 
		    timeout: 5000, 
			after: function() {
				$('#caption').html(this.alt);
			},
			random: 1
		});
		
	jQuery('#home_slider') 
		.before('<div id="sidebar_slider_nav">') 
		.cycle({ 
		    fx:     'fade', 
		    speed:  'slow', 
		    timeout: 6000, 
			after: function() {
				$('#caption').html(this.alt);
			},
			random: 1
		});
	})
