
$(document).ready(function(){
    $('.toh').tableHover(); 
    $('a[rel]').lightBox(); 

$(".menuBlock:has(.submenuimg)").hover(function(){
        $(this).children(".submenuimg").hide();
        $(this).children(".menuBlockSubMenu").show();
    },function(){
        $(this).children(".submenuimg").show();
        $(this).children(".menuBlockSubMenu").hide();
    });
});





