$(document).ready(function(){
	//hide the all of the element with class msg_body
	$(".m_our_brands_body").hide();
	//toggle the componenet with class msg_body
	$(".m_our_brands_inactive").click(function(){
		$(this).next(".m_our_brands_body").slideToggle(600);
	});
});
