$().ready(function () {
    $(".voce_menu").hover(function () {
        $(this).attr("src", $(this).attr("src").replace("_off","_on"));
    },
    function () {
        $(this).attr("src", $(this).attr("src").replace("_on", "_off"));
    });
});

jQuery.preloadImages = function() {
	var a = (typeof arguments[0] == 'object')? arguments[0] : arguments;
	for(var i = a.length -1; i > 0; i--) {
		jQuery("<img>").attr("src", a[i]);
	}
}

function CambiaCornice(img)
{
  $('#cornice_quadro').attr("src",img);
}

function ShowAgente(id)
{
  $('.agente').hide();
  $('#' + id).show();

  $('#regione').attr("src","/img/italia_rivenditori/" + id + ".gif");
  $('#regione').show();
  
  $('#mappa_trasparent').hide();
  $('#mappa_trasparent').show();
}

function ShowRegione(id)
{
  $('#regione_temp').attr("src","/img/italia_rivenditori/" + id + ".gif");
  $('#regione_temp').show();
}

function HideRegione()
{
  $('#regione_temp').hide();
}
