$(document).ready(function()
{
      /*$(".topNavBar").children("ul").children("li").each(function()*/
      $(".topNavBar > ul > li").each(function()
      {
       var linkWidth = $(this).width();
      
       if($(this).children("ul").length > 0)
       {
            var childrenULWidth = $(this).children("ul").width();
            // alert(childrenULWidth);
            $(this).children("ul").css({"margin-left":-((90 - linkWidth)/2)});
       }
      });
      
      $('#dvPhotos a').lightBox({fixedNavigation:true});

      
});


