$(function(){
    $('.ie6 li.roller')
        .hover(function(){
            $(this).addClass('hover');
        })
        .mouseout(function(){
            $(this).removeClass('hover');
        });
});

// $(document).ready(function(){
//  
//  if($('li.roller ul')){
//      // Hide thesub-nav items
//      $('li.roller ul').css('display','none');
// 
//      // Set the observers
//      $('li.roller').hover(function(){        
//          $(this).find('ul').css('display','');
//      });
// 
//      $('li.roller').mouseleave(function(){
//          $(this).find('ul').fadeOut(250);
//      });     
//  }
//  
// });
