$(document).ready(function(){
    $('.txt ul li.list').each(function(i, e) {
        $(e).contents().wrap('<span class="text"></span>')
    });
    
    $('.pic_container_bg a').lightBox({fixedNavigation:true});
    $('.icaption_left a').lightBox({fixedNavigation:true});
    $('.icaption_right a').lightBox({fixedNavigation:true});
     
    

})

function toggle(id)
{
    $('#months_'+id).toggle('slow');
    if(document.getElementById('link_'+id).style.className == 'active')
    {
        document.getElementById('link_'+id).style.className = ' ';
    }
    else
    {
        document.getElementById('link_'+id).style.className = 'active';
    }
}


