$(document).ready(function(){
	//funzione slide iniziale
	$('#logo').click(function() {
		if ($("#main_div_pag").is(":hidden") || $("#main_div_pag").is(":animated")) {
		} else {
			$("#main_div_pag").animate({height: 'toggle'}, 2000, function() {
				// Animation complete.
			});
		}

	});
	//funzione slide menu
	$('li.headlink').hover(
		function() { 
			if ($('ul', this).is(":hidden") && !$('ul', this).is(":animated")) {
				//$('ul', this).animate({height: 'toggle'}, 500); 
			}
		},function() {
			$('ul', this).css('display', 'none'); 	
		}
	);
	
	$('li.headlink').click(
		function() { 
			if ($('ul', this).is(":hidden") && !$('ul', this).is(":animated")) {
				$('ul', this).animate({height: 'toggle'}, 800); 
			}
		}
	);
});
function cambiaScritta(id, nuovo_testo){
	document.getElementById(id).innerHTML = nuovo_testo; 
}
function redir(url){
	window.location=url;
}
function updatecaptcha() {
   img = document.getElementById('imgCaptcha'); 
   //Change the image
   img.src = '../../lib/captcha/image.php?' + Math.random();
}
function rollOver(idImg, urlImg){
	document.getElementById(idImg).src = urlImg;
}
function rollOut(idImg, urlImg){
	document.getElementById(idImg).src = urlImg;
}