$(document).ready(function(){
    //$('table.striped tr:even').addClass('even');
    //$('table.striped tr:odd').addClass('odd');
    //$('#gallery + img').lightBox();
    $("ul.sf-menu").superfish({ 
        pathClass:  'current',
        delay:1000000
    });
    //$('.content').addClass('bg_image_5');
    
    $('table.striped tbody tr').lightBox();
    $('table.striped tr')    
    .mouseover(function(){
        $(this).addClass('highlight_row');
    })
    .mouseout(function(){
        $(this).removeClass('highlight_row');
    });
    
    

        


});
