$(document).ready(function() {
	
	//----------------------------------------
	
	$(".moreinfo").hide();
	
	var winheight = $(document).height()+'px';
	$('body').css('height',winheight);
	
	
	$("#cancel").click(function() {
		hide($("#newcontactbox"));
		return false;
	});
	
	
	// INSERT NEW CONTACT
	$("#newcontact").click(function() {
		show($('#newcontactbox'));
		return false;
	});
	
	// INSERT NEW FIXTURE
	$("#newfixture").click(function() {
		show($('#newfixturebox'));
		return false;
	});
	
	
	//----------------------------------------
	
	$(".morelink").click(function() {
		$(this).parent('td').parent('tr').next('tr').toggle();
		return false;
	});
	
	
	//----------------------------------------
	
	// team history
	
	$('.col3-3 span:not(:eq(0))').hide();
	$('h3:eq(0) a').toggleClass('active');
	
	$(".showinfo").click(function() {
		$(this).parent('h3').next('span').toggle();
		$(this).toggleClass('active');
		return false;
	});
	
	
	//----------------------------------------
	
	function show(obj) {
		//$('#translayer').css('bottom','-75px');
		winpos= $(window).scrollTop()+100;
		obj.css('top',winpos);
		$('#translayer').show();
		obj.show();
		return;
	}
	
	function hide(obj) {
		$('#translayer').hide();
		obj.hide();
		return;
	}
	
	
	
	
});
