$(document).ready(function() {
	
	
	$("ul.slides").cycle({
		fx: 'fade',
		pause: 1,
        delay: -500,
        timeout:  6000
	});
	
	$(".slideshow img").hover(function() {
        $(this).stop().animate({ opacity: 0 }, 500);	
  	},
  		function() {
    	$(this).stop().animate({ opacity: 1.0 }, 500);
  	});
	
});
