$(document).ready(function(){
	
	$("#fotos").cycle({
		timeout: 13000,
		speed:500,
		fx:'scrollRight',
		pager:"#navegacao",
		next:"#bt_proximo",
		prev:"#bt_anterior"
	});	
	

	
	$("#bt_pause").click(function(){
		
		$("#fotos").cycle("pause");
		
		$("#bt_play").show();
		$(this).hide();

	});
	
	
	$("#bt_play").click(function(){
		
		$("#fotos").cycle("resume");
		
		$("#bt_pause").show();
		$(this).hide();

	});	
	
	
	$("#controle").hide();
	
	$("#galeria").hover(
		function() {$("#controle").fadeIn()},
		function() {$("#controle").fadeOut()}
	
	);
	
});



