// JavaScript Document
function wid(questo)
{
width = questo.width;
height = questo.height;
if (width<height) {questo.height = 80; } else {questo.width = 100}
}

function switchStylefocus(spegni, accendi){
// alert(spegni);
// $('#mainfocus').cycle('stop');
 $(document.getElementById(spegni)).fadeOut(300,function () { $(document.getElementById(accendi)).fadeIn(300);});
}