﻿$(document).ready(function(){
	var matches_lists = $("#page div.group-tour div.group table").next();
	
	matches_lists.each(function(){
		$(this).after('<a class="toggle-link" href="#">Показать все</a>');
		$(this).find("li.played:last").parent().parent().addClass('played-active');
		$(this).children(':not(li.played-active)').slideUp("slow");
	});
	
	var toggle_links = matches_lists.next();
	
	toggle_links.click(function(){
		var this_list = $(this).prev();
		
		if (this_list.children().is(":hidden")){
			this_list.children(':not(li.played-active)').slideDown("slow");
			$(this).text("Скрыть все");
		} else {
			this_list.children(':not(li.played-active)').slideUp("slow");
			$(this).text("Показать все");
		}
		return false;
	});
});
