/*
	id
	fileName.pdf
	Headline
	fileSize
	Date - Location
	expiresAfterDate
	[,"","","","","",],
*/

var now = new Date();
var yy = now.getYear();
if(yy<2006) { yy += 1900; }
var mm = (now.getMonth()+1);
	 if(mm<10) { mm ="0"+mm; }
var dd = now.getDate();
	 if(dd<10) { dd ="0"+dd; }
var today = yy+''+mm+''+dd;
var thisDate = mm+"-"+dd+"-"+yy;


function tourneys()
{

var links = [
	//[,"file","title","fileSize(kb)","Date - Location",expDate],
	[,"http://www.mawawrestling.com/scholastic.html","MAWA Scholastic Tournaments",20081231],	
	[,"http://65.61.23.146/tlyouth.htm","PA Youth Wrestling - Tournament List",20081231],	
	[,"http://www.pajw.org/calendar.cgi?Month=1&Year=2007&config=calendar.cfg","PA Junior Wrestling - Tournaments Calendar",20081231]
];

var linkList = '<ul id="tLinks2">';
var num = 0;
for(var j=0;j<links.length;j++)
	{
	var loc = links[j][1];
	var title = links[j][2];
	var exp = links[j][3];
	if(exp<=today) { continue; }
	else { num += 1; linkList += '<li><a href="'+loc+'" target="_blank">'+title+'</a></li>'; }
	}
 linkList += '</ul>'; 

var tourneys = [	
	[,"Brandywine_XmasTourn_2006.pdf","2006 Brandywine Christmas Tournament","244kb","Dec. 23 \'06 - at the Brandywine Heights Middle School",20061223],
	[,"Blazer-OPEN_2007.pdf","Blazer Mat Club Memorial OPEN Tournament","672kb"," Jan. 13 \'07 - at the Daniel Boone High School Gymnasium",20070113],
	[,"Blazer-NOVICE_2007.pdf","Blazer Mat Club Memorial NOVICE Tournament","636kb","Jan. 14 \'07 - at the Daniel Boone High School Gymnasium",20070114],
	[,"HamburgTourn_2006.pdf","23<sup>rd<\/sup> Annual Hamburg Wrestling Tournament","250kb","Jan 17 \'07 - at the Hamburg Field House",20070117],
	[,"LynxElementaryTourn_2007.pdf","11<sup>th<\/sup> Annual Lynx Elementary Wrestling Tournament","250kb","Jan 20 \'07 - at the Oley Valley Sr. High School",20070120],
	[,"SV_elementaryTourn.pdf","Schuylkill Valley Elementary Wrestling Tournament","56kb","Jan 20 \'07 - at the Schuylkill Valley High School",20070120],
	[,"LynxNoviceTourn_2007.pdf","10<sup>th<\/sup> Annual Lynx Novice Wrestling Tournament","250kb","Feb 10 \'07 - at the  Oley Valley Sr. High School",20070210],
	[,"Elco_2007.pdf","Elco Raiders Youth Wrestling Invitational","116kb","Feb. 17 \'07 - Elco High School",20070217],
	[,"BerksSchoolBoy_2007.pdf","50<sup>th</sup> Annual Berks Schoolboy Wrestling Tournament","152kb","Feb. 19-21 \'07 at Fleetwood Sr. High School",20070221],
	[,"Tulpy_2007.pdf","Tulpehocken Elementary 25<sup>th</sup> Annual Wrestling Tournament","172kb","Feb. 24 \'07 at Tulpehocken High School",20070224],
	[,"StateCollegOpen_2007.pdf","2007 State College Wrestling Tournament","164kb","Feb. 25 \'07 - at the Recreation Hall, Penn State Univ., University Park, PA",20070225],
	[,"2007_Mifflin_Elem-JH_Tourn.pdf","The 18<sup>th<\/sup> Annual Mustang Open - Elementary &amp; Jr. High Wrestling Tournament","56kb","March 10 \'07 - at the Governor Mifflin Intermediate School, Shillington, PA",20070310]
];
	
	var tDocs;
	tDocs  = "<div id=\"tDocList\">";
	tDocs  += "<h1>More Local/Regional Tournament Links: </h1>";
	if(num>0) { tDocs += linkList; }
	tDocs  += "<h1>CW Mat Club Winners: </h1>";
	tDocs  += "<ul id=\"tDocList\">";
	for(var i=0; i<tourneys.length; i++)
		{
		if(tourneys[i][5]<=today) { continue; }
		else  
			{
			tDocs  += "<li>";
			tDocs  += "<h3>"+tourneys[i][2]+"</h3>"; //HEADNG
			tDocs  += "<p>"+tourneys[i][4]+" "; //NOTES
			tDocs  += "<br />&rarr; <a href=\"_files/"+tourneys[i][1]+" \">Download application/info here</a> ( PDF, file size: "+tourneys[i][3]+" )</p> "; //FILE SIZE
			tDocs  += "</li>";
			}
		}
	tDocs  += "</ul></div>";
	document.write(tDocs);
}

tourneys();

