// JavaScript Document
$(document).ready(function() {
	$(".team-list tbody tr:odd").addClass("odd-row");
	$(".tabs").tabs();
	$('.teamPostBody[@img]').remove();
	$(".eventTitle").click(function() {
		$(this).next(".eventNotes").slideToggle("fast");
	});
});
