$(document).ready(function() {
							   
      
    });
	
	function goUp(which) {
		
		$(which).find('.pulsante-contenuto').stop().animate({
    top: '-34px'
  }, 200, function() {
    // Animation complete.
  });	
		
	}
	
	function goDown(which) {
		
		$(which).find('.pulsante-contenuto').stop().animate({
    top: '0px'
  }, 200, function() {
    // Animation complete.
  });	
		
	}
