$(document).ready(function(){
	var lastBlock = $('.accordion li.active');
	var minWidth = 40;
	var maxWidth = 881;
	$('.accordion > li').click(
		function(){
			
			if( lastBlock == this )
				return;
			
			$(lastBlock).animate({ 'width': minWidth+"px" }, { queue:true, easing: 'swing', duration:300} );
			$(this).animate({'width': maxWidth+"px"}, { queue:true, easing: 'swing', duration:300});
			
			lastBlock = this;	
		}
	);
	
	$('.green-boxes > .box').each(function(){
		if($(this).height() > max_height) {
			max_height = $(this).height();
		}
	}).css({'height':max_height});
	
	$('#navigation ul li').hover(
		function(){
			$(this).find('a:eq(0)').addClass('in-dropdown');
			$(this).find('.subnav').show();
		},
		function(){
			$(this).find('a:eq(0)').removeClass('in-dropdown');
			$(this).find('.subnav').hide();
		}
	);
});
var max_height = 0;
