//___________________________//
//       JS developer        //
//¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯//
//            ·^·            //
//         /7\øñø©ë®ø        //
//     · Leonardo Alia ·     //
//  .: ©å§7ø®ø £åßø®ïø§ø :.  //
//___________________________//
//                           //

/************************************************************************************
Funzione per visualizzare
************************************************************************************/
function vis_it(id) {
	document.getElementById(id).style.visibility = "visible";
}
/************************************************************************************
Funzione per nascondere
************************************************************************************/
function hid_it(id) {
	document.getElementById(id).style.visibility = "hidden";
}
/************************************************************************************
Funzione per cambiare l'ordine di sovrapposizione
************************************************************************************/
function set_zindex(id, z_index) {
	document.getElementById(id).style.zIndex = z_index;
}
/************************************************************************************
Funzione per cambiare background
************************************************************************************/
function set_bkg(id, bkg) {
	document.getElementById(id).style.background = bkg;
}
/************************************************************************************
Funzione per cambiare classe
************************************************************************************/
function clssit(id,cl){
document.getElementById(id).className = cl;   
}
