// Galeria de imagens
$.fn.extend({
	galeria: function(idgal, idlist, offset) {
		var n = 1;
		var k = '';
		if($("#"+idgal+" img").size() > 1) {
			$("#"+idgal+" img").each(function() {
				//if(n <= 5) {
					$(this).attr('class', 'item' + n);
					if(n > 1) {
						//k += '<span>&bull;</span>';
					}
					k += '<a href="javascript:void(0);" class="pagina" id="pagina' + n + '">' + n + '</a>';
					n++;
				//}
			});
			$("#"+idlist).html(k);
		}
		n = 1;
		
		$(".pagina").click(function() {
		 $(".pagina").css("text-decoration", "none");
		 $(this).css("text-decoration", "underline");
		 $(this).blur();
		 var n = $(this).attr("id").substr(6, $(this).attr("id").length - 6);
			$("#"+idgal).animate({top: - (n - 1) * offset + "px" });
			$(".legenda ul").animate({top: - (n - 1) * 55 + "px" });
		});

	}
});


