// JavaScript Document

var currentCoachTab = 'coachPopov';

function switchCoachTab(_id) {	
	if (_id != currentCoachTab) {
		
		$(_id).style.display = 'block';
		$(_id + 'Link').style.fontStyle = "italic";
		
		$(currentCoachTab).style.display = 'none';
		$(currentCoachTab + 'Link').style.fontStyle = "normal";
		
		currentCoachTab = _id;
	}
}
