
// jQuery Requerida

$(function(){
    $('a.new-window').click(function(){
        window.open(this.href);
        return false;
    });
});

//Funções para o Portifólio

var contador = 0;

function portifolio_proximo(url) {
	if(contador < (projetos.length-1)) {
		$("#projeto_imagem").fadeOut();
		$("#projeto_"+contador).fadeOut("normal", function(){ 
			contador += 1;
			$("#projeto_imagem").html('<img src="'+url+'/imagens/'+projetos[contador].imagem+'" width="510" height="500" />');
			$("#projeto_"+contador).fadeIn();
			$("#projeto_imagem").fadeIn();
		});
	}
}

function portifolio_anterior(url) {
	if(contador > 0) {
		$("#projeto_imagem").fadeOut();
		$("#projeto_"+contador).fadeOut("normal", function(){ 
			contador -= 1;
			$("#projeto_imagem").html('<img src="'+url+'/imagens/'+projetos[contador].imagem+'" width="510" height="500" />');
			$("#projeto_"+contador).fadeIn();
			$("#projeto_imagem").fadeIn();
		});
	}
}