	/*
	* File: events.js
	* Custom logic for the page: events
	*/

	$(document).ready(function () {

		// tabs
		$("#eventsTabs a").click(function () {
			var tabID = $(this).attr("id");
			$("#eventsTabs a").removeClass("on");
			$(this).addClass("on");

			$("#eventsTabsContent").find(".tab_content").hide();
			$("#" + tabID + "Content").show();
		});

	});
