$(document).ready(function() {
	$("img.roll").hover(
	function() { this.src = this.src.replace(".gif", "-on.gif");
	},
	function() { this.src = this.src.replace("-on.gif", ".gif");
	});
	
	$('#cycle_slideshow').cycle({ 
    		fx:     'scrollUp', 
		    timeout: 6000, 
		    delay:  -2000 
		});
	
	
});


