// JavaScript Document
function moveLeft(ft){
	var caixa = '#'+ft;
	$(caixa).animate({ "width":"50px" }, 100);
}

function moveRight(ft){
	var caixa = '#'+ft;
	$(caixa).animate({ "width":"230px" }, 100);
}

function mudaFoto(ft){
	var foto = '<img src="'+ft+'" alt="" width="607" height="300" border="0" />';
	$('#foto').fadeOut('slow', function(){
		document.getElementById("foto").innerHTML = foto;
	});
	$('#foto').fadeIn('slow');
}

function zerarTudo(ft){
	for(i=1;i<6;i++){
		if('f'+i != ft)
			moveRight('f'+i);
	}
}
