$(function() {
});
$(document).ready(function(){
	$('.slide_cont a').click(function() {
		if ($(this).closest('div').hasClass('sc_open')) return true;

		$(this).closest('.slide_cont').find('.sc_open').removeClass('sc_open').addClass('sc_closed').find('.sc_item_cont').css({display: 'none', height: 0});
		$(this).closest('.sc_item').removeClass('sc_closed').addClass('sc_open').find('.sc_item_cont').css({display: 'block', height: 153});
		return false;
	});

	$('#EVENT_SELECTOR').change(function() {
		$('#BACKURL').val('/a/accept.php?eventID=' + this.value);
	});

	// открываем видео в лайтбоксе
	$("a.video_loc").fancybox({
		'padding'		: 0,
        'autoScale'     : true,
		'scrolling'		: 'no',
        'transitionIn'	: 'none',
		'transitionOut'	: 'none',
		'content' : '<div style="width:640px;height:480px;" id="player"></div>',
		'onComplete': function() { 
			flowplayer("player", "/gfx/flowplayer/flowplayer-3.2.7.swf", {
				clip: {
					baseUrl: 'http://www.tening.ru/',
					url: $(this).attr('href'),
					width: 100,
					height: 65,
				},
			});
		}
	})
});

