$(document).ready(function(){
	$('td.left').click(function(){
		var $pri = $(this).parent();
		var $sec = $(this).parent().next();	
		var $team = $(this).text();
		
		$pri.hide();
		
		if ($sec.attr('class') == '2nd'){
			$sec.hide();
		};
		
		$pri.before('<tr><td colspan="3" id="ajax" class="edit"></td></tr>');
		
		$.post('../pages/ajax.php', {'fn': 'teams', 'team': $team}, function(data){
			$('#ajax').html(data);
		});
	});
	
	$('input#cancel').click(function(){

	
		return false;
		
	});
	
});
