	$(document).ready(function(){
			$('#box-foto-principal').show();
			$('#box-foto-principal').cycle({
				fx:     'fade',
				timeout: 8000,
				speed: 1000,
				prev:   '.anterior',
				next: '.proximo'
			});
		
			$('a').each(function(i){
		  		var ah = $('h2 a').eq(i).height();
				var ph = $('h2 a').eq(i).parent().height();
				var mh = (ph - ah) / 2;
				$('h2 a').eq(i).css('margin-top', mh);
			});
		});
