$(document).ready(function() {
	//main navigation--------------------------------------------------------------//
	(function() {
		$.each($('#navigation > li'), function() {
			if($(this).find('ul').is('ul')) {
				$(this).addClass('level2')
			}
		});
		$('#navigation > li > ul').wrap('<div class="subnav-wrapper"/>');
	})();

	//footer block------------------------------------------------------------------//
	$(".action-link-open").click(function(e) {
		e.preventDefault();
		$(this).parents('.twitterBox').parent('.w_810').find('img').animate({
			'top' : 33,
			'margin-left': -44,
			width: 225,
			height: 133
		}, 400);

		$('.footer-top').animate({
			height : 128
		}, 600, function() {
			$('.socialBox').fadeIn(1000);
			$('.twitterBox').animate({
				top : 40
			}, 1200);
			$('.openBox').hide();
			$('.closeBox').fadeIn(2000);
		});
	});
	$(".action-link-close").click(function(e) {
		e.preventDefault();
		$('.socialBox').fadeOut(1000, function() {
			$('.footer-top').animate({
				height : 19
			}, 1200);
			$('.people-bg-big').animate({
				top : 5,
				'margin-left': -25,
				width: 186,
				height: 110			
			}, 1200);
			$('.twitterBox').animate({
				top : 30
			}, 1000);
		});
		$('.closeBox').hide();
		$('.openBox').fadeIn(300);
	});
});
