<!--
    
    /**
     * Eventi osservati all'onload della pagina
     */
    $(document).ready(function() {
        
        $('#menu_5').addClass('menu_selected');
        
        $('#cancel').bind('click', clearForm);
                
        var scrollBlock = $('#content-holder').height();
        var displayBlock = $('#content-scroll').height();
        var maxScroll = scrollBlock - displayBlock;
        
        $("#content-slider").slider({
            orientation: "vertical",
            min: 0,
            max: maxScroll,
            value: maxScroll,
            slide: function (ev, ui) {
                $('#content-holder').css('bottom', '-' + ui.value +'px' );
            }
        });
        
    });
    
    
    function clearForm() {
       
      var form='#contacts_form';
      
      $(':input', form).each(function() {
        var type = this.type;
        var tag = this.tagName.toLowerCase(); // normalize case
        
        if (type == 'text' || type == 'password' || tag == 'textarea')
          this.value = "";
        
        else if (type == 'checkbox' || type == 'radio')
          this.checked = false;
        
        else if (tag == 'select')
          this.selectedIndex = -1;
      });
      
      $('p.warning').empty();
      
    };
    
// -->
