jQuery(document).ready(function(){

	jQuery(".callout-go1").click(function(event){

		expand_box( 'box1' );

		// Stop the link click from doing its normal thing
		return false;
	});
	jQuery(".callout-heading1").click(function(event){

		expand_box( 'box1' );

		// Stop the link click from doing its normal thing
		return false;
	});

	jQuery(".callout-go2").click(function(event){
		
		expand_box( 'box2' );

		// Stop the link click from doing its normal thing
		return false;
	});
	jQuery(".callout-heading2").click(function(event){

		expand_box( 'box2' );

		// Stop the link click from doing its normal thing
		return false;
	});

	jQuery(".callout-go3").click(function(event){

		expand_box( 'box3' );

		// Stop the link click from doing its normal thing
		return false;
	});
	jQuery(".callout-heading3").click(function(event){

		expand_box( 'box3' );

		// Stop the link click from doing its normal thing
		return false;
	});


});

function open_all(element_id) {
	jQuery("li.expand#" + element_id).css ("display","none");
	jQuery("li.collapsed").css ("display","block");

	return false;
};

function expand_box(element_id) {
	jQuery("li.expand").css ("display","none");
	jQuery("li.collapsed").css ("display","none");
	jQuery("li.expand#" + element_id).css ("display","block");
};