// <![CDATA[
window
		.addEvent(
			'domready',
			function() {
				if ($('linkInviaFoto') != null) {
					$('linkInviaFoto').setProperty('class', "");
					if (getParametroQueryString('formContatti')) {
						$('formContatti').setProperty('class', "");
						$('titoloInviaFoto').setProperty('class', "");
						$('linkInviaFoto').getElement('strong').firstChild.nodeValue = "Nascondi Invia una foto";
						$('linkInviaFoto').store('chiudiForm', true);
					} else {
						$('formContatti').setProperty('class', "nascondi");
						$('titoloInviaFoto').setProperty('class',
							"nascondi");
						$('linkInviaFoto').store('chiudiForm', false);
					}
					$('linkInviaFoto')
							.addEvent(
								'click',
								function() {
									if (this.retrieve('chiudiForm') == true) {
										this.store('chiudiForm', false);
										$('linkInviaFoto').getElement(
											'strong').firstChild.nodeValue = "Invia una foto";
										$('formContatti').setProperty(
											'class', "nascondi");
										$('titoloInviaFoto')
												.setProperty('class',
													"nascondi");
									} else {
										this.store('chiudiForm', true);
										$('linkInviaFoto').getElement(
											'strong').firstChild.nodeValue = "Nascondi Invia una foto";
										$('formContatti').setProperty(
											'class', "");
										$('titoloInviaFoto')
												.setProperty('class', "");
									}
								});
				}
			});
// ]]>

