$(document).ready(function(){
    
        // Новости
		$('.show').toggle(function(){
			$(this).parent().next('.news_sh').show('slide', 1000);
            $(this).text('Скрыть');
		}, function(){
			$(this).parent().next('.news_sh').hide('explode', 1000);
            $(this).text('Подробнее...');
		});
        
        // Меню
        $("ul#nav li a").wrapInner("<span></span>");
    	$("ul#nav li a span").css({"opacity" : 0});
    	$("ul#nav li a").hover(function(){
    		$(this).children("span").stop().animate({"opacity" : 1}, 400);
            
    	}, function(){
    		$(this).children("span").stop().animate({"opacity" : 0}, 400);
    	});
        
        // Fancybox
        $("a.fb").fancybox({
            'hideOnOverlayClick': false
        });
        
        // Контактная форма
        $('.show_form').toggle(function(){
			$('.reg_form').show('fold', 1000);
            $(this).text('Форма регистрации / Скрыть форму');
		}, function(){
			$('.reg_form').hide('explode', 1000);
            $(this).text('Форма регистрации / Показать форму');
		});
        
	});
