/* галлерея аккордион */
$(document).ready(function () {
  // Находим элементы для меню и устанавливаем для них обработчик события  
  $('.jimgMenu_2 ul').kwicks({max: 310, duration: 300, easing: 'easeOutQuad'});  
});
/* Для сертификатов */
$(document).ready(function() {
    $("a#example1").fancybox({
        'titlePosition'		: 'outside',
        'overlayColor'		: '#000',
        'overlayOpacity'	: 0.7
    });
});
jQuery(document).ready(function(){
    jQuery('#top div.main-nav ul li').css("opacity",0.5)
});
jQuery(document).ready(function(){
    jQuery('#top div.main-nav ul li').hover(function(){
        jQuery(this).css("opacity",1);
    },
    function(){
        jQuery(this).css("opacity",0.5);                
    })
});
$(document).ready(function(){
    $('#bok_main').hover(function(){
        $('#bok_main').css({width:"267px",height:"260px"});
        $('#bok').css("width","268px");
        $('#bok1').css("opacity",0.7).delay(150).show();
    },
    function(){
        $('#bok_main').css({width:"111px",height:"39px"});            
        $('#bok1').hide().css("opacity",0.7);
        $('#bok').css("width","110px");
    });
});
