﻿$(document).ready(function() {

	$(".msg_body").hide();
	$(".msg_head").removeClass("msg_head-on");
	$(".msg_head").click(function () { $(this).next(".msg_body").slideToggle(600); $(this).toggleClass("msg_head-on"); return false; });
	$(".msg_head:first").trigger("click");

	$("#main table tr:even").addClass("alt");
    $("#main table tr").find("td:first").attr("style", "border: none");

});
