$(document).ready(
	function()
	{
		// Add Zebra Stripes to Tables
		$("table.zebra").each(
			function(){
		  		$("tr:odd", this).not(".even").addClass("odd");
		  		$("tr:even", this).not(".odd").addClass("even");
			});
		
		// Contact Page Map
		$('a.map_toggle').click(function()
			{
				$('div.map_instructions').hide();
				$('div.map_content').hide();
				$(this).next('div.map_content').show();
				$('a.map_toggle').removeClass('map_active');
				$(this).addClass('map_active');
				return false;
			}
		);


		// Locations Page Map
		$('div.vcard').mouseover(function()
			{
				$('div.vcard').removeClass('active');
				$(this).addClass('active');
				return false;
			}
		);

	}
);
