$(function(){
	
	var crazy_mode = false;
	
	$("div.hover").hide().css('visibility', 'visible');
	
	$('#we_do').click(function(){
		if (!crazy_mode) {
			$('#o .hover, #p .hover').show();
			$('#o .hover').animate({ 
				left: '0px',
				width: '1000px'
			}, 500, 'easeInOutQuart');

			$('#p .hover').animate({ 
				left: '0px',
				width: '1000px'
			}, 500, 'easeInOutQuart');

			$('#s, #t').find('.hover').fadeIn(500);
			$('#s h2, #s p').css('color', '#000');
			
			crazy_mode = true;
		} else {
			$('#o .hover').animate({ 
				left: '1000px',
				width: '0px'
			}, 500, 'easeInOutQuart', function(){
				$('#o .hover, #p .hover').hide();
			});

			$('#p .hover').animate({ 
				left: '-1000px',
				width: '1000px'
			}, 500, 'easeInOutQuart');

			
			$('#s, #t').find('.hover').fadeOut(500);
			$('#s h2, #s p').css('color', '#fff');
			
			crazy_mode = false;
		}
	});
	
	var clients_hidden = true;
	$('#show_clients').click(function(){
		if (clients_hidden) {
			$('#clients_container').show();
			$('#clients_container').animate({
				height: '190px'
			}, 500, 'easeInOutCubic');
		} else {
			$('#clients_container').animate({ 
				height: '0px'
			}, 500, 'easeInOutCubic', function(){
				$('#clients_container').hide();
			});
		}
		clients_hidden = !clients_hidden;
	});
	
});

