$(document).ready(function() {
		    $('.slideshow').cycle({
				fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
			});
			$('#slidernovedades').cycle({
				fx: 'scrollHorz', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
				pause:   1,
				timeout: 8000,
				speed:  'fast',
				next:   '#next', 
    			prev:   '#prev' 
			});
						
});

$(function() {
		    $('#mapa').cycle({ 
		        timeout: 0, 
		        speed:   500, 
		    });
		    $('#goto1').click(function() { 
		        $('#mapa').cycle(0); 
		        return false; 
		    });
		    $('#goto2').click(function() { 
		        $('#mapa').cycle(1); 
		        return false; 
		    });
});


