var mapahome;
var markers;
$(document).ready(function() {
	// slideshow grande
	
    $("article>header>ol").cycle({
		fx: 'fade',
		speed:  2500,
		timeout: 12000,
		pager:  '#scontrol'
	});

	cycleState = "playing";
	$('#pauseslide').click(function(event) {
		if (cycleState == "playing") {
			$('.slideshow').cycle('pause');	
			cycleState = 'paused';
			$(this).attr('class','play');
		} else {
			$('.slideshow').cycle('resume');	
			cycleState = 'playing';
			$(this).attr('class','pausa');
		}
		event.preventDefault();
	});
	
});

