// JavaScript Document
$(document).ready(function() {
    $('#gallery a').lightBox(); // Select all links that contains lightbox in the attribute rel

    $(".menuL_open").toggle(
       function() {
           menuId = $(this).attr('rel');
           $("#submenuHolder" + menuId).slideDown();
           return false;
    }, function() {
           menuId = $(this).attr('rel');
           $("#submenuHolder" + menuId).slideUp();
           return false;
    });
});
