/**
 * 
 * @author Artod for ÎÎÎ "Ýêñïðåññ ëàá" http://expresslab.ru
 * http://MoiaVizitka.ru/Artod, http://artod.ru
 *
 */

$(document).ready(function(){

	$("#news-switcher a").click(function(){
		if (!$(this).parent().hasClass('news-switcher-active')) {
			var index = $("#news-switcher a").index($(this));
			//alert(index);
			$("#news-panels > div").hide();
			$("#news-panels > div").eq(index).fadeIn('fast');
			$("#news-switcher a").parent().removeClass('news-switcher-active');
			$(this).parent().addClass('news-switcher-active');
		}
		return false;
	});

	$(".menuslide").hide();

	$("a.group, a.news-gallery").fancybox({
		'zoomOpacity' : false,
		'overlayShow' : true,
		'hideOnContentClick' : false,
		'overlayOpacity' : '0.8',
		'zoomSpeedIn' : '200',
		'zoomSpeedOut' : '200'
	});
	
	
	$(".menuslide").prev().find('a').toggle(
		function(){
			$(this).parent().next().slideDown();
		},
		function(){
			$(this).parent().next().slideUp()
		}
	);

});
