$(document).ready(function(){

 $("#a").click(function(event){
  event.preventDefault();
  $("#cabeza").slideToggle(300);
 });

    $("#fotos").cycle({
		fx: 'scrollVert',
                speed: 'fast',
		timeout: 0,
		next: '#an',
		prev: '#sig'
	});

});