$(function(){
	/* intro */
	if ($('.intro').length > 0) {
		$('.intro li:first').addClass('active');
		timer = window.setInterval(function(){
			var size = $('.intro li').size();
			var act = $('.intro li').index($('.intro li.active'));
			if (act+1 == size) {
				$('.intro li.active').children('p.pic').fadeOut(500,function(){
					$('.intro li.active').removeClass('active');
					$('.intro li:first').addClass('active').children('p.pic').hide().fadeIn(500);
				});
			} else {
				$('.intro li.active').children('p.pic').fadeOut(500,function(){
					$('.intro li.active').removeClass('active').next().addClass('active').children('p.pic').hide().fadeIn(500);
				});
			};
		},3000);
		$('.intro h2 a').click(function(){
			$('.intro li').removeClass('active').children('p.pic').hide();
			$(this).parent('span').parent('h2').parent('li').addClass('active').children('p.pic').show();
			window.clearInterval(timer);
			return false;
		});
	};
	/* sitemap */
	$('h4.sitemap a').click(function(){
		$(this).parent('span').parent('h4').toggleClass('sitemap-active');
		$('div.sitemap').toggle();
		return false;
	});
	/* contacts */
	$('.contacts h4 a').click(function(){
		if ($('.contacts-popup').is(':hidden')) {
			$('.footer .contacts').hide();
			$('.contacts-popup').show().animate({'bottom': '0px' }, 200, 'linear');
		} else {
			$('.contacts-popup').animate({'bottom': '-120px' }, 200, 'linear',function(){
				$('.footer .contacts').show();
				$('.contacts-popup').hide();
			});
		};
		return false;
	});
	/* hiding */
	$(document).bind('click', function(e){
		if ((!$(e.target).is('h4.sitemap span a')) && (!$(e.target).is('div.sitemap, div.sitemap *'))) {
			if ($('h4.sitemap').hasClass('sitemap-active')) {
				$('h4.sitemap').removeClass('sitemap-active');
				$('div.sitemap').hide();
			};
		};
		if ((!$(e.target).is('.contacts h4 a')) && (!$(e.target).is('.contacts-popup, .contacts-popup *'))) {
			if (!$('.contacts-popup').is(':hidden')) {
				$('.footer .contacts').show();
				$('.contacts-popup').hide().css('bottom','-120px');
			};
		};
	});
	/* css-table */
	if ($('.content table').length > 0) {
		$('.content table tr:nth-child(2n)').addClass('even');
	};
	/* tabs */
	if ($('dl.tabs').length > 0) {
		$('dl.tabs dd').addClass('js');
		$('dl.tabs dt:first, dl.tabs dd:first').addClass('active');
		$('dl.tabs dt').click(function(){
			$(this).siblings().removeClass('active').end().next('dd').andSelf().addClass('active');
		});
	};
	/* qa */
	if ($('dl.qa').length > 0) {
		$('dl.qa dd').hide();
		$('dl.qa dt span').click(function(){
			$(this).parent('dt').next('dd').slideToggle('fast');
		});
	};
	/* photo-clients */
	if ($('div.photo-clients').length > 0) {
		$('div.photo-clients dl dt, div.photo-clients dl dd').addClass('hidden');
		$('div.photo-clients dl dt:first').removeClass('hidden').addClass('active');
		$('div.photo-clients dl dd:first').removeClass('hidden').addClass('active');
		$('.extra-clients-prev:first').hide();
		$('.extra-clients-next:last').hide();
		$('.extra-clients-prev').click(function(){
			$(this).parent('dd').removeClass('active').addClass('hidden').prev('dt').removeClass('active').addClass('hidden').prev('dd').removeClass('hidden').addClass('active').prev('dt').removeClass('hidden').addClass('active');
		});
		$('.extra-clients-next').click(function(){
			$(this).parent('dd').removeClass('active').addClass('hidden').prev('dt').removeClass('active').addClass('hidden').next('dd').next('dt').removeClass('hidden').addClass('active').next('dd').removeClass('hidden').addClass('active');
		});
	};
	/* photo */
	$('a[rel^="prettyPhoto"]').prettyPhoto({
		animationSpeed:'fast',
		padding:40,
		opacity:0.75,
		showTitle:false,
		allowresize:true,
		counter_separator_label:'/',
		theme:'dark_rounded',
		hideflash:true
	});
});
