$(document).ready(function()
{
    $(document).styleButton();
    
    $("a.popup").fancybox({
        'transitionIn': 'none',
        'transitionOut': 'none',
        'titlePosition': 'over',
        'overlayOpacity': '0.5',
        'overlayColor': '#000000',
        'titleShow': false
    });
    
    //remove empty menu <ul>
    $("ul").each
    (
      function()
        {
            var elem = $(this);
            if (elem.children().length == 0)
            {
                elem.remove();
            }
        }
    );

}
);


