//Funzione load pagina del prodotto Profumeria


function loadInfo(page) {
document.getElementById('imgProdotto').style.display="none";
document.getElementById('infoProdotto').style.display="";
$('#infoProdotto').load('templates/ProfNews/'+page);
}


//Funzione chiusura pagina info prodotto di Profumeria

$('#close').click(function() {
 document.getElementById('infoProdotto').style.display="none";
 document.getElementById('imgProdotto').style.display="";
});

