/*Funzioni Per Jquery*/
$(document).ready(
	function () {
		scrollaTo('');
		
		//Verifico i form
		$("form.verificaForm").verificaForm({tipoVisualizzazione:2});
	}
);

function scrollaTo(idElemento){
	$("a[href^='#']").click(function(e) {
		scrollWin ($(this).attr("href"),"slow");
		return false;
	});
	
	//Reindirizzo la pagina al punto corretto
	if(window.location.hash!=""){
		doveHash=window.location.hash.replace("#","") +"pag";
		scrollWin($("a[name='"+ doveHash +"']"),"slow");
	}
}

function RefreshImage(valImageId) {
	var objImage = document.images[valImageId];
	if (objImage == undefined) {
		return;
	}
	var now = new Date();
	objImage.src = objImage.src.split('?')[0] + '?x=' + now.toUTCString();
}
