/* The place to load various init scripts */

$(document).ready(function(){
	
	/* add a jquery close effect to any dialogs that might appear on the page. */
	$(".msgClose a").click(function() {
		$(this).parent().parent().hide("slow");
	});

	// add tiptip functionality to title elements within spam
	$('span[title]').tipTip({defaultPosition: "right"});
	

});
