
var _tallPage = '4520px';

var _prodPage = '1514px';

var _defaultPage = '1514px';

function showSection(id)
{
	jQuery('.Section').fadeOut('slow');
	setTimeout("jQuery('#"+id+"').fadeIn('slow');", 400);



	if (id == 'players') {

	    jQuery('.ClearLakeProductions').css('min-height', _tallPage);
		jQuery('.ClearLakeProductions').css('_height', _tallPage);

	} 
	else if (id == 'team')
	{
		jQuery('.ClearLakeProductions').css('min-height', _prodPage);
		jQuery('.ClearLakeProductions').css('_height', _prodPage);
	}
	else 
	{

		jQuery('.ClearLakeProductions').css('min-height', _defaultPage);
		jQuery('.ClearLakeProductions').css('_height', _defaultPage);
	}
	
}
	

