$(document).ready(function()
{
	
	//Open 
	$('.blueBoxTop').toggle(
	function() //On
	{
		//Figure out the content height
		var height = $('.blueBoxTop').outerHeight() + $('.blueBox').outerHeight() + $('.blueBoxBottom').outerHeight();
		$('#blueBoxContainer').animate({'height':height}); //Make the box fit the content
	},
	function() //Off
	{
		$('#blueBoxContainer').animate({'height':46}); //Close the box
	});
	
	$('.blueBoxBottom').click(function()
	{
		
		$('.blueBoxTop').click(); //Toggle the box so it closes
		
	});
	
});
