﻿$(document).ready(function() {

    $('#menu li.first_level').hover(function(){
        $(this).children('ul').addClass('show').slideToggle('fast');
    });

    $('#show_scheme').click(function(){
        $('#mskimg').toggle();
        return false;
    });
	
	$('.video_link').live('click', function(){
		var $this = $(this);
		var $block = $this.closest('.video_block');
		var title = $block.find('.video_link').eq(1).html();
		var $obj = $block.find('.video_object').children().eq(0);
		$.colorbox({inline: true, href: $obj, close: 'Закрыть', title: title});
		return false;
	});

});
