Originariamente inviato da ant_alt
codice:
<script type="text/javascript" language="javascript">
Javascript :oVVoVe: :confused:
window.onload = function()
{
   var box = document.getElementById('uno')
   box.onmouseover = function()
   {
      this.className = 'uno_hover'
   }
   box.onmouseout = function()
   {
      this.className = 'uno'
   }
}
</script>
Che sia quello?