$(function() {
	$.fn.cycle.defaults.timeout = 5000;
   	$('#rolling').cycle({ 
    	fx:    'fade', 
    	speed: 1500,
   	 	sync:   0, 
    	delay: -4000 
	});
	
	$('#rolling').mouseover(function(){
		$(this).cycle('pause');	}).mouseout(function(){
			$(this).cycle('resume');
		});
	$('#rolling a').click(function(event){
		event.preventDefault();
		var url = this.href;
		window.name = url.split('#')[1];
		window.location.href = url.split('#')[0];
	});
});
