 $(document).ready(function() {
   $(".icoL").fadeTo("0", 0.0);
   $(".icoT img,.icoL").hover(function() {
     var x = this.getAttribute("class");
     if (x == "icoL") { x = this.getAttribute("id"); x = x.replace(/icoL/i, ""); }
     var z = document.getElementById('spotlight');
     var y = 'spotlight' + x;
     z.setAttribute('className', y);
     z.setAttribute('class', y);
     x = "#" + x + "IcoL";
     $(x).fadeTo(150, 1.0);
   },function() {
     var x = this.getAttribute("class");
     if (x == "icoL") { x = this.getAttribute("id"); x = x.replace(/icoL/i, ""); }
     var z = document.getElementById('spotlight');
     z.setAttribute('className', "spotlightHid");
     z.setAttribute('class', "spotlightHid");
     x = "#" + x + "IcoL";
     $(x).fadeTo(150, 0.0);
   });
 });