/* 
 * FUNZIONI VARIE JAVASCRIPT
 */



//Gestione etichetta "Cerca" nel campo input text
function clickclear(thisfield, defaulttext) {
    if (thisfield.value == defaulttext) {
        thisfield.value = "";
    }
}
    function clickrecall(thisfield, defaulttext) {
    if (thisfield.value == "") {
        thisfield.value = defaulttext;
    }
}





jQuery(document).ready(function() {
								
	/*ESPANDE L'ARTICOLO PRINCIPALE*/							
								
    $("#articolo_presentazione_testo").toggle(
      function () {
        
		$(this).animate({height:'100%',duration:"2000"}) 
      	 return false;
		
		
      },
      function () {
        
		$(this).animate({height:'208px'}) 
       return false;
		
      }
    );





						
								
	
	
	
});

