function mngContatti(){
    
    $('MailLabel').className = 'MailLabel';
    $('TelLabel').className = 'TelLabel2';
    $('FaxLabel').className = 'FaxLabel';
    $('PostaLabel').className = 'PostaLabel';
    $('ReclamiLabel').className = 'ReclamiLabel';
	
    $('Mail').hide();
    $('Tel').show();
    $('Fax').hide();
    $('Posta').hide();
    $('Reclami').hide();

	Event.observe('MailLabel', 'click', function(){
        if($('MailLabel').hasClassName('MailLabel2') == false){
            $('MailLabel').className = 'MailLabel2';
            $('TelLabel').className = 'TelLabel';
            $('FaxLabel').className = 'FaxLabel';
            $('PostaLabel').className = 'PostaLabel';
            $('ReclamiLabel').className = 'ReclamiLabel';

            $('Tel').hide();
            $('Mail').show();
            $('Fax').hide();
            $('Posta').hide();
            $('Reclami').hide();

        }
    });

    Event.observe('TelLabel', 'click', function(){
        if($('TelLabel').hasClassName('TelLabel2') == false){
            $('MailLabel').className = 'MailLabel';
            $('TelLabel').className = 'TelLabel2';
            $('FaxLabel').className = 'FaxLabel';
            $('PostaLabel').className = 'PostaLabel';
            $('ReclamiLabel').className = 'ReclamiLabel';

            $('Mail').hide();
            $('Tel').show();
            $('Fax').hide();
            $('Posta').hide();
            $('Reclami').hide();

        }
    });
	
	Event.observe('FaxLabel', 'click', function(){
        if($('FaxLabel').hasClassName('FaxLabel2') == false){
            $('MailLabel').className = 'MailLabel';
            $('TelLabel').className = 'TelLabel';
            $('FaxLabel').className = 'FaxLabel2';
            $('PostaLabel').className = 'PostaLabel';
            $('ReclamiLabel').className = 'ReclamiLabel';

            $('Mail').hide();
            $('Tel').hide();
            $('Fax').show();
            $('Posta').hide();
            $('Reclami').hide();

        }
    });
	
	Event.observe('PostaLabel', 'click', function(){
        if($('PostaLabel').hasClassName('PostaLabel2') == false){
            $('MailLabel').className = 'MailLabel';
            $('TelLabel').className = 'TelLabel';
            $('FaxLabel').className = 'FaxLabel';
            $('PostaLabel').className = 'PostaLabel2';
            $('ReclamiLabel').className = 'ReclamiLabel';


            $('Mail').hide();
            $('Tel').hide();
            $('Fax').hide();
            $('Posta').show();
            $('Reclami').hide();

        }
    });
	
	Event.observe('ReclamiLabel', 'click', function(){
        if($('ReclamiLabel').hasClassName('ReclamiLabel2') == false){
            $('MailLabel').className = 'MailLabel';
            $('TelLabel').className = 'TelLabel';
            $('FaxLabel').className = 'FaxLabel';
            $('PostaLabel').className = 'PostaLabel';
            $('ReclamiLabel').className = 'ReclamiLabel2';


            $('Mail').hide();
            $('Tel').hide();
            $('Fax').hide();
            $('Posta').hide();
            $('Reclami').show();

        }
    });
}

Event.observe(window, 'load', mngContatti);
