$(function(){
    if( $('.pboxc').length) {
      $('.pboxc').hover(function() {
        //$(this).addClass('pboxch');
      }, function() {
        //$(this).removeClass('pboxch');
      })
    }
    
    if( $("#contentM").attr("class") ) {
        var aa =  $("#contentM").attr("class");
        $('li.' + aa ).parents('div').children('ul').show();
    }
    
    
    
    $('.c1 > div > h2').click(function() {
       // alert( $(this).parent('div').children('ul').html())
       $('.c1 > div > ul').hide("slow")       
        $(this).parents('div').children('ul').slideToggle("slow"); 
      })
         
      
})




$(function() {
    if( $('a.overview').length ){
       $('a.overview').lightBox({
        overlayBgColor: '#000',
        overlayOpacity: 0.9,
        imageLoading: '/img/lightbox-ico-loading.gif',
                imageBtnClose: '/img/close.png',
                imageBtnPrev: '/img/lightbox-btn-prev.gif',
                imageBtnNext: '/img/lightbox-btn-next.gif',
        containerResizeSpeed: 350,
        txtOf: 'en'
       });
    }
});

