$(document).ready(function() {
	
	$('#slideshow img:first').fadeIn(2000, function() {

$('#slideshow').cycle({
		
		speed:	3000,
		timeout:	2000,
		next: '#next',
		prev: '#back',
		
		});
	});
   
 	$("#control").toggle(function(){
   	$("#control").css({ "background-image" : "url(images/btn_play.png)" });
   	$('#slideshow').cycle('pause');
   	   	
   	
	}, function() {
		// Change the background image to "pause"
		$(this).css({ "background-image" : "url(images/btn_pause.png)" });
   	$('#slideshow').cycle('resume',true);

   }); 
   
   $('#foto').hover(
        function() { $('#slide_controls').fadeIn(); },
        function() { $('#slide_controls').fadeOut(); }
    );
   
});
