// ie6 hover

$(document).ready(function() {   
                      $('span').hover(
                          function() {
                      $(this).addClass('hover');
                           }, function() {
                      $(this).removeClass('hover');
                            }
                    );
                    });


