var caricata = false;
function setCaricata(){
	caricata = true;
}
function imageOn(id){
	if (caricata){
			var str_switch = 'on';
			separatore = id.src.lastIndexOf('_') + 1;
			punto = id.src.lastIndexOf('.');
			id.src = '' + id.src.substring(0, separatore) + str_switch + id.src.substring(punto, id.src.length);
			return true;
	}
}
function imageOut(id){
	if (caricata){
			var str_switch = 'out';
			separatore = id.src.lastIndexOf("_") + 1;
			punto = id.src.lastIndexOf(".");
			id.src = "" + id.src.substring(0, separatore) + str_switch + id.src.substring(punto, id.src.length);
			return true;
	}
}
