$(document).ready(function(){
	//hide the all of the element with class msg_body
	$(".footer_body").hide();
	//toggle the componenet with class msg_body
	$(".footer_head").click(function(){
		$(this).next(".footer_body").slideToggle(600);
	});
});

$(document).ready(function(){
	//hide the all of the element with class gig_body
	$(".gig_body").hide();
	//toggle the componenet with class gig_body
	$(".gig_head").click(function(){
		$(this).next(".gig_body").slideToggle(600);
	});
});

$(document).ready(function(){
	//hide the all of the element with class gig_body
	$("#wallPoster").hide();
	//toggle the componenet with class gig_body
	$(".wallPosterOpen").click(function(){
		$(this).next("#wallPoster").slideToggle(600);
	});
});