
	jQuery(document).ready(function($){
		
		// d 
		function d(m){console.log(m)}
		
		  //hide the all of the element with class msg_body
		  $(".expired-content-body").hide();

		  //toggle the componenet with class msg_body
		  $(".error_bar").click(function()
		  {
		    $(this).next(".expired-content-body").slideToggle(600);
		  });

		   $(".expired-title").click(function()
		  {
		    $(this).next(".expired-content-body").slideToggle(600);
		  });




		
	});	

	


