// JavaScript Document

$(document).ready(function(){
 	$("div").easyTooltip();
	$(".msg_body").hide();
$(".msg_head").toggle(function(){
$(this).next(".msg_body").slideDown(100);
}, function(){
$(this).next(".msg_body").slideUp(300);
});

	
});

