// JavaScript Document
$(document).ready(function(){
	// Shows/hides message when clicking on row(tr)
	$("tr.msgTr").click(function(){	
		var div = $(this).children("td.msgTd").children("div.msg");	
		if (div.is(":hidden")) {
			div.slideDown();
			$(this).removeClass("compact");
			$(this).addClass("expanded");
		} else {
			div.slideUp();
			$(this).removeClass("expanded");
			$(this).addClass("compact");
		}		
	})	
	// Highlights title and +/- button on hover	
	$("tr.msgTr").mouseover(function(){
		var titleDiv = $(this).children("td.msgTd").children("div.title");		
		titleDiv.addClass("titleHover");		
	}).mouseout(function(){
		var titleDiv = $(this).children("td.msgTd").children("div.title");		
		titleDiv.removeClass("titleHover");
	})
});
