//This file contains the current values for variables that are found in many places throughout the site

//Start Professional Development section

function PDLimit()	//Current annual limit to Professional Development Applications
{
	document.write('$3800');
}

function PDFisc()	//Current fiscal year
{
	document.write('2010-2011');
}

function PDNext()	//Complete the sentence "The next PD deadline will be..." Do not include a period.
{
	document.write('<b>on November 2, 2010</b>');
}

function PDEnd()	//End of the next PD coverage period
{
	document.write('March 31, 2011');
}

function PDRound()	//Which round the next is, out of how many
{
	document.write('second of three');
}

//End Professional Development section


//Start Photo section

function obAryIn()		//Creates an array of oblong (193x96 pixel) photos
{
	var PicList = new Array(
	'/images/daleandsigmund.jpg',
	'/images/CouncelDev.jpg',
	'/images/xmas.jpg',
	'/images/chalkcampaign.jpg',
	'/images/GA.jpg',
	'/images/loyola.jpg',
	'/images/EV.jpg',
	'/images/webcom.jpg',
	'/images/GM-EV.jpg',
	'/images/councelling.jpg',
	'/images/SP-building-entrance.gif',
	'/images/Small-Science-bldg.gif',
	'/images/peoplerally.jpg');
	return PicList;	
}

function sqAryIn()		//Creates an array of square (96x96 pixel) photos
{
	var PicList = new Array(
	'/images/LBbldg.jpg',
	'/images/roger.jpg',
	'/images/backtshirt.jpg',
	'/images/xmassmiling.jpg',
	'/images/BBQGeoff.jpg',
	'/images/raffle.jpg',
	'/images/BBQ2.jpg',
	'/images/GM.jpg',
	'/images/BBQ.jpg',
	'/images/atrium.jpg');
	return PicList;
}


//Start General CUPEU info

function MemberNum()	//The number that goes between "Cupeu has more than..." and "...members"
{
	document.write('350');
}

//End General CUPEU info