jQuery(document).ready(function(){
		jQuery("#womensLink").click(function(event){
			event.preventDefault();
			if(document.getElementById('womensLi').className=="team-innactive team"){
					document.getElementById('womensLi').className="team-active team";
				} else {
					document.getElementById('womensLi').className="team-innactive team";
				}
			jQuery("#womensTeams").slideToggle(500);
		});
		
		jQuery("#mensLink").click(function(event){
			event.preventDefault();
			if(document.getElementById('mensLi').className=="team-innactive team"){
					document.getElementById('mensLi').className="team-active team";
				} else {
					document.getElementById('mensLi').className="team-innactive team";
				}
			jQuery("#mensTeams").slideToggle(500);
		});
	});
