$(document).ready(function(){
    $('.txt ul li.list').each(function(i, e) {
        $(e).contents().wrap('<span class="text"></span>')
    });
    
    $('#gallery a').lightBox({fixedNavigation:true});
    $('.pics_left a').lightBox({fixedNavigation:true});
    $('.icaption_right a').lightBox({fixedNavigation:true});
     
    $(".hlist ul li a").hover(function() { //When trigger is hovered...

        //Following events are applied to the subnav itself (moving subnav up and down)
        $(this).parent().find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click

        $(this).parent().hover(function() {
        }, function(){
            $(this).parent().find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
        });

    });

});

function toggle_div(id)
{
    $("#"+id).toggle("slow");
}




