jQuery(document).ready(function(){
	$('#header .callout .expand').click(function(e){
		e.preventDefault();
		
		className = $(this).parent().attr('class');
		calloutName = $(this).parent().attr('id');
		
		if(className != 'callout open'){	
			$(this).parent().animate({'height': '188'}, 300).addClass('open');
			$(this).parent().children('p').animate({'height': '55'}, 300);
			$('ul.menu, #sidebar-main').animate({'marginTop': '+=96px'}, 300);
			
			if(calloutName == 'callout-one'){
				$('#callout-two').animate({'marginTop': '+=96px'}, 300);
			}
		} else {
			$(this).parent().animate({'height': '92'}, 300).removeClass('open');
			$(this).parent().children('p').animate({'height': '17'}, 300);
			$('ul.menu, #sidebar-main').animate({'marginTop': '-=96px'}, 300);
			
			if(calloutName == 'callout-one'){
				$('#callout-two').animate({'marginTop': '-=96px'}, 300);
			}
		}
	});
});
