$(document).ready(function(){

	jQuery("div.content-fotos a.left").click(function (event) {                         
    	event.preventDefault();
		canviaImatge(-1);
    });
	
	jQuery("div.content-fotos a.right").click(function (event) {                         
    	event.preventDefault();
		canviaImatge(1);
    });
	
	function canviaImatge(direccio)
	{		
		var nou;
		var canviat = false;
		var elements = $(".imatge-galeria").length;
	
		$(".imatge-galeria").each(function(i) {
			if(!canviat && $(this).css("display") == "inline") {				
				$(this).css("display","none");
				
				nou = $(".imatge-galeria")[(i+direccio+elements)%elements];
				$(nou).css("display","inline");
				
				canviat = true;
			}		
		});	
	}
	
});


