$(document).ready(function() {	
	
	$("#foto-ampliada").cycle({ 
	    fx:     'fade', 
	    prev:   '#anterior', 
	    next:   '#seguent', 
	    timeout: 0 
	});
	
	$("a.pdf").click(function() {
		window.open(this.href,"PDF","toolbar=no,resizable=yes");
		return false;
	});

	$("a.nova").click(function() {
		window.open(this.href,"_blank");
		return false;
	});

});
