function homeAbrirFoto(num) {
	for (i = 1; i <= totalfotos; i++) {
		$("#fotohome"+i).hide();
		$("#linkfotohome"+i).html("<a href=\"javascript:homeAbrirFoto('"+i+"')\">"+i+"</a>");
	}
	$("#fotohome"+num).show();
	$("#linkfotohome"+num).html("<a href=\"javascript:homeAbrirFoto('"+num+"')\" class=\"on\">"+num+"</a>");
}

var home_foto_atual = 1;
var home_transicao_foto = null;

function homePlayFotos() {
	home_transicao_foto = window.setInterval('homeTrocarFoto()', 5000);
}

function homePauseFotos() {
	clearInterval(home_transicao_foto);
}

function homeTrocarFoto() {
	homeAbrirFoto(home_foto_atual);
	if (home_foto_atual == totalfotos)
		home_foto_atual = 1;
	else
		home_foto_atual++;
}

homePlayFotos();