$(document).ready(function(){ 
	$('#bookmark').jFav();
	
  $(".msg_body").hide();
  //toggle the componenet with class msg_body
  $(".msg_head").click(function()
  {
	alert("test");
    $(this).$(".msg_body").slideToggle(600);
  });
  
}); 
