// JavaScript Document

jQuery(function( $ ){

var i;
var c = 0;
var c = c+336;
		i=1;
		//	#animation-1 
		$("#nova_ir").click(
		function(){
			if (i<=1) {
			$('#nova_lista').animate({marginLeft: "-"+c+"px" }, 500 );
			i++;
			c++;
			}

			 else {
			 window.location = "http://www.salaodehumordeparaguacu.com.br/lista-album.asp"
			}
			
		});	
		
		$("#nova_voltar").click(
		function(){
			if (i>1) {
			$('#nova_lista').animate({marginLeft: 0+"px" }, 500 );
			i--;
			c--;
			}

			 else {
			 window.location = "http://www.salaodehumordeparaguacu.com.br/lista-album.asp"
			}
			
		});	
		
});
