	/********************************************************
	*
	* GRANT RECIPIENT DETAILS STORAGE AND RANDOM RECIPIENT PICKER
	* CREATOR: 	Darren Grattidge
	* DATE:		07-Nov-08
	*
	*********************************************************/


	/********************************************************
	*	Creates a Recipient Object which stores grant recipients details
	*	recipient: 		name of recipient
	*	imagepath: 		path to recipients displayable image
	*	granttype:		the type of grant (i.e. UTAS or Carrick)
	*	grantdetails:	an array allowing for addition of multiple pieces of additional grant information, such as title, description
	*********************************************************/
	function Recipient(recipient)
	{
		this.recipient = recipient + "<br />";;
		this.imagepath = "";
		this.granttype = "";
		this.grantdetails = new Array();
	}


	/********************************************************
	*	Adds the Image Path details to the Recipient Object
	*	imagepath: 	path to recipients displayable image
	*********************************************************/
	Recipient.prototype.addImagePath = function(image)
	{
		this.imagepath = image;
	}

	/********************************************************
	*	Adds the Grant Type details to the Recipient Object
	*	granttype:	the type of grant being displayed
	*********************************************************/
	Recipient.prototype.addGrantType = function(grant)
	{
		this.granttype = grant + "<br />";
	}

	/********************************************************
	*	Adds the Details section to the Recipient Object
	*	grantdetails:	array for storing any grant details
	*********************************************************/
	Recipient.prototype.addDetails = function(details)
	{
		this.grantdetails[this.grantdetails.length] = details + "<br />";
	}

	/********************************************************
	*	Gets the Recipients Title and Name from the Recipient Object
	*********************************************************/
	Recipient.prototype.getRecipient = function()
	{
		return this.recipient;
	}

	/********************************************************
	*	Gets the image path from the Recipient Object
	*********************************************************/
	Recipient.prototype.getImagePath = function()
	{
		return this.imagepath;
	}

	/********************************************************
	*	Gets the Grant Type from the Recipient Object
	*********************************************************/
	Recipient.prototype.getGrantType = function()
	{
		return this.granttype;
	}

	/********************************************************
	*	Gets the Array of Details from the Recipient Object
	*********************************************************/
	Recipient.prototype.getDetails = function()
	{
		var size = this.grantdetails.length;
		var output = "";

		for(var i = 0; i < size; i++)
			output = output + "<p style='margin-top: 5px; margin-bottom:5px;'>" + this.grantdetails[i] + "</p>";

		return output;
	}

	/********************************************************
	* Generates a Random Number up to the size of the amount
	* of recipients stored in the UTASRecipients array. It
	* then returns a 2 element array containing the Text output
	* to display on the page as well as the Image Path to the
	* selected recipients grant details.
	*********************************************************/
	function randomUTASImagePicker()
	{
		var size = this.UTASRecipients.length;
		var rannum = Math.floor(Math.random() * size);
		var outputarray = new Array("","","","");

		outputarray[0] = outputarray[0] + UTASRecipients[rannum].getGrantType();
		outputarray[1] = outputarray[1] + UTASRecipients[rannum].getRecipient();
		outputarray[2] = outputarray[2] + UTASRecipients[rannum].getDetails();
		outputarray[3] = outputarray[3] + UTASRecipients[rannum].getImagePath();

		return outputarray;
	}
	
	
	function randomALTCImagePicker()
	{
		var size = this.ALTCRecipients.length;
		var rannum = Math.floor(Math.random() * size);
		var outputarray = new Array("","","","");

		outputarray[0] = outputarray[0] + ALTCRecipients[rannum].getGrantType();
		outputarray[1] = outputarray[1] + ALTCRecipients[rannum].getRecipient();
		outputarray[2] = outputarray[2] + ALTCRecipients[rannum].getDetails();
		outputarray[3] = outputarray[3] + ALTCRecipients[rannum].getImagePath();

		return outputarray;
	}	
	


	/********************************************************
	* RECIPIENTS CONTAINER
	**********************
	* Adding a New Recipient
	*-----------------------
	* To add a new recipient to Recipient Container
	* copy one of the recipient blocks below and edit
	* to suit new Recipients details.
	* You can add multiple recipient.addDetails() sections to
	* a single recipients code (as stored in array).
	*********************************************************/

	// CREATE ARRAYS TO STORE ALL RECIPIENT DETAILS
	UTASRecipients = new Array();
	ALTCRecipients = new Array();
	
	
	/* UTAS Recipients HERE */
	
	// START - DR SARAH BOOTH
	recipient = new Recipient("Dr Sara Booth");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-sarah-booth.jpg");
	recipient.addDetails("Teaching Excellence Award 2007");
	recipient.addDetails("New Academic Staff Award");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END - DR SARAH BOOTH

	
	// START - DR MARGARET BAGULEY
	recipient = new Recipient("Mrs Margaret Baguley");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-margaret-baguley.jpg");
	recipient.addDetails("Teaching Excellence Award 2007");
	recipient.addDetails("New Academic Staff Award");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END - DR MARGARET BAGULEY	
	

	// START - PROF SUE JONES
	recipient = new Recipient("Assoc. Prof Sue Jones");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-sue-jones.jpg");
	recipient.addDetails("Teaching Excellence Award 2007");
	recipient.addDetails("Individual Award");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END - PROF SUE JONES
	


	// START - DR JOHN PURSER
	recipient = new Recipient("Dr John Purser");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-john-purser.jpg");
	recipient.addDetails("Teaching Excellence Award 2007");
	recipient.addDetails("Individual Award");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END - DR JOHN PURSER


	// START - MR YOJI HASHIMOTO
	recipient = new Recipient("Mr Yoji Hashimoto");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-yoji-hashimoto.jpg");
	recipient.addDetails("Teaching Excellence Award 2007");
	recipient.addDetails("Individual Award");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END - MR YOJI HASHIMOTO	




	// START – MR PATRICK DALTON
	recipient = new Recipient("Mr Patrick Dalton");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-paddy-dalton.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("Plant Science");
	recipient.addDetails("The continued commitment to student learning through the application of the scientific method to achieve learning outcomes in plant science.");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END - MR PATRICK DALTON



	// START – DR KERRY HOWELLS
	recipient = new Recipient("Dr Kerry Howells");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-kerry-howells.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("Education");
	recipient.addDetails("For the continual development of unique approaches to reflective practice that have been applied in a range of contexts to greatly enhance learning and teaching.");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END - DR KERRY HOWELLS



// START – DR ANGELA MARTIN
	recipient = new Recipient("Dr Angela Martin");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-angela-martin.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("Management");
	recipient.addDetails("Developing of interpersonal skills and psychological capital in current and future managers through the facilitation of deep learning strategies.");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END - DR ANGELA MARTIN



// START – DR MARY SCOTT
	recipient = new Recipient("Dr Mary Scott");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-mary-scott.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("Art");
	recipient.addDetails("For sustained excellence in teaching and for developing and implementing effective and stimulating learning activities for Visual Art and Design students.");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END - DR MARY SCOTT


	// START – MR RICK SNELL
	recipient = new Recipient("Mr Rick Snell");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-rick-snell.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("Law");
	recipient.addDetails("For commitment and success in influencing, motivating and inspiring students to develop and improve their independent learning.");	
	UTASRecipients[UTASRecipients.length] = recipient;
	// END - MR RICK SNELL

	

	// START –DR JULIAN DERMOUDY
	recipient = new Recipient("Dr Julian Dermoudy");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-julian-dermoudy.jpg");
	recipient.addDetails("Awards for Teaching Excellence 2008");
	recipient.addDetails("Computing");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – DR JULIAN DERMOUDY


	

	// START – MR JOHN VELLA
	recipient = new Recipient("Mr John Vella");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-john-vella.jpg");
	recipient.addDetails("Awards for Teaching Excellence 2008");
	recipient.addDetails("Art");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – MR JOHN VELLA




	// START – MS SUSAN SALTER
	recipient = new Recipient("Ms Susan Salter");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-susan-salter.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2009");
	recipient.addDetails("Human Life Sciences");
	recipient.addDetails("Engaging students by challenging them to make connections with their growing knowledge and to do this fearlessly by asking questions for themselves and others.");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – MS SUSAN SALTER



	// START – DR KERRY HOWELLS
	recipient = new Recipient("Dr Kerry Howells");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-kerry-howells.jpg");
	recipient.addDetails("Award for Teaching Excellence 2009");
	recipient.addDetails("Education");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – DR KERRY HOWELLS
	


	// START – DR RICK SNELL
	recipient = new Recipient("Dr Rick Snell");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-rick-snell.jpg");
	recipient.addDetails("Award for Teaching Excellence 2009");
	recipient.addDetails("Law");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – DR RICK SNELL
	


	// START – MISS RIKKI MAWAD
	recipient = new Recipient("Dr Rikki Mawad");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-rikki-mawad.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("TUU");
	recipient.addDetails("For commitment to ensuring student-centred and well informed contributions in University decision-making and for dedication in seeking to enhance the overall student experience at UTAS.");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – MISS RIKKI MAWAD
	
		
	// START – Dr Melissa Nursey-Bray
	recipient = new Recipient("Dr Melissa Nursey-Bray");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-melissa-nursey-bray.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("National Centre for Marine Conservation &amp; Resource Sustainability");
	recipient.addDetails("For sustained commitment to developing inter-disciplinary student understanding and critical thinking ability in the field of environmental sustainability.");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – Dr Melissa Nursey-Bray



	// START – Ms Kaz Ross	
	recipient = new Recipient("Ms Kaz Ross");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-recipient-placeholder.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("Asian Languages &amp; Studies");
	recipient.addDetails("For creating an inclusive and stimulating learning environment through innovative and creative strategies which challenge, support and foster student engagement with Asia and increase 'Asia literacy'.");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – Ms Kaz Ross	


	// START – Professor Sankar Sinha	
	recipient = new Recipient("Professor Sankar Sinha");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-sankar-sinha.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("Medicine");
	recipient.addDetails("For developing innovative, student-driven learning activities and implementing them in a challenging and supportive environment to prepare compassionate, critical and highly skilled medical practitioners.");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – Professor Sankar Sinha
	

	// START – Dr Lisa Butler	
	recipient = new Recipient("Dr Lisa Butler");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-lisa-butler.jpg");
	recipient.addDetails("Award for Programs that Enhance Learning 2008");
	recipient.addDetails("Law");
	recipient.addDetails("International Student Support Program (ISSP)");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – Dr Lisa Butler
	
	

	// START – Dr Christopher Chin
	recipient = new Recipient("Dr Christopher Chin");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-christopher-chin.jpg");
	recipient.addDetails("Citations for Outstanding Contributions to Student Learning 2009");
	recipient.addDetails("National Centre for Maritime Engineering &amp; Hydrodynamics");
	recipient.addDetails("Creating innovative methodologies and online resource materials for cross faculty first year Mathematics students that encourage independent learning and improve learning outcomes.");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – Dr Christopher Chin




	// START – Ms Jane Skalicky
	recipient = new Recipient("Ms Jane Skalicky");
	recipient.addGrantType("UTAS Award Winner");
	recipient.addImagePath("img/recipients/photo-jane-skalicky.jpg");
	recipient.addDetails("Award for Programs that Enhance Learning 2009");
	recipient.addDetails("CALT");
	recipient.addDetails("Peer Assisted Study Sessions (PASS) Program");
	UTASRecipients[UTASRecipients.length] = recipient;
	// END – Ms Jane Skalicky
	
	




	/* ALTC Recipients HERE */


	// START - DR CHRIS BURKE
	recipient = new Recipient("Dr Chris Burke");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-chris-burke.jpg");
	recipient.addDetails("Citation for Outstanding Contribution to Student Learning 2007");
	recipient.addDetails("For sustained enthusiasm and commitment to student-centred learning of the scientific method in order to achieve positive learning outcomes in undergraduate microbiology.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - DR CHRIS BURKE


// START - PROF SUE JONES 2
	recipient = new Recipient("Assoc. Prof Sue Jones");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-sue-jones.jpg");
	recipient.addDetails("Citation for Outstanding Contribution to Student Learning 2007");
	recipient.addDetails("For championing and supporting teaching development and improving the student learning environment at the level of the school, faculty and university.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - PROF SUE JONES	2
	

	// START - DR CATRIONA MCLEOD
	recipient = new Recipient("Dr Catriona McLeod");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-catriona-mcleod.jpg");
	recipient.addDetails("Citation for Outstanding Contribution to Student Learning 2007");
	recipient.addDetails("For innovative, holistic approaches to student learning, leading to architecture students demonstrating and applying more sophisticated levels of functioning knowledge.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - DR CATRIONA MCLEOD	


	// START - ASSOC PROF PAMELA ALLEN
	recipient = new Recipient("Associate Professor Pamela Allen");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-pam-allen.jpg");
	recipient.addDetails("Citation for Outstanding Contribution to Student Learning 2007");
	recipient.addDetails("For exemplary guidance of student learning through the use of authentic and engaging strategies designed to facilitate students' deep understanding and appreciation of culture and language.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - ASSOC PROF PAMELA ALLEN
	
	
	// START - MRS JENNY OAKLEY
	recipient = new Recipient("Mrs Jenny Oakley");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-jenny-oakley.jpg");
	recipient.addDetails("Coordinator University Preparation Program");
	recipient.addDetails("Award for Programs that Enhance Learning Services Supporting Student Learning 2006");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - MRS JENNY OAKLEY	
	
	
	// START - DR JOHN PURSER 2
	recipient = new Recipient("Dr John Purser");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-john-purser.jpg");
	recipient.addDetails("Citation for Outstanding Contribution to Student Learning 2007");
	recipient.addDetails("For facilitating links between the University and aquaculture industry to create high quality work-integrated learning experiences for students.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - DR JOHN PURSER 2
	
	
	// START - ASSOC PROF BRIAN YATES
	recipient = new Recipient("Associate Professor Brian Yates");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-brian-yates.jpg");
	recipient.addDetails("Physical Sciences and Related Studies");
	recipient.addDetails("Award for Teaching Excellence 2006");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - ASSOC PROF BRIAN YATES	
	

	// START - COLIN JONES
	recipient = new Recipient("Mr Colin Jones");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-colin-jones.jpg");
	recipient.addDetails("Winner of an Australian University Teaching Award 2005");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - COLIN JONES		
	

	// START - RICK SNELL
	recipient = new Recipient("Mr Rick Snell");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-rick-snell.jpg");
	recipient.addDetails("Citation for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("For an outstanding capacity to inspire and encourage student learning across the undergraduate law degree from first year to final year students.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - RICK SNELL


	// START - MARY SCOTT
	recipient = new Recipient("Dr Mary Scott");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-mary-scott.jpg");
	recipient.addDetails("Citation for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("For sustained excellence in teaching and for developing and implementing effective and stimulating learning activities for visual arts and design students.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - MARY SCOTT


	// START - KERRY HOWELLS
	recipient = new Recipient("Dr Kerry Howells");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-kerry-howells.jpg");
	recipient.addDetails("Citation for Outstanding Contributions to Student Learning 2008");	
	recipient.addDetails("For the continual development and contextualised application of a unique approach to reflective practice that greatly enhances learning and teaching and fosters greater student engagement.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - KERRY HOWELLS


	// START - KIM BESWICK
	recipient = new Recipient("Dr Kim Beswick");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-kim-beswick.jpg");
	recipient.addDetails("Citation for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("For commitment to and leadership of continual improvement of student learning in the Faculty of Education, particularly in relation to mathematics education.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - KIM BESWICK


	// START - MARGARET BAGULEY
	recipient = new Recipient("Dr Margaret Baguley");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-margaret-baguley.jpg");
	recipient.addDetails("Citation for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("For outstanding contribution in building awareness of the effectiveness of visual arts strategies to build confidence, encourage higher order thinking skills and enhance student engagement.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - MARGARET BAGULEY
	

	// START - SUSAN JONES
	recipient = new Recipient("Associate Professor Susan Jones");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-sue-jones.jpg");
	recipient.addDetails("Award for Teaching Excellence 2008");
	recipient.addDetails("Biological Sciences, Health and related studies");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - SUSAN JONES
	

	// START - ANGELA MARTIN
	recipient = new Recipient("Dr Angela Martin");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-angela-martin.jpg");
	recipient.addDetails("Citation for Outstanding Contributions to Student Learning 2009");
	recipient.addDetails("For the creation of curricula and multimedia resources that develop interpersonal skills and psychological capital in current and future managers.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - ANGELA MARTIN
	
	
	// START - PADDY DALTON
	recipient = new Recipient("Mr Patrick Dalton");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-paddy-dalton.jpg");
	recipient.addDetails("Citation for Outstanding Contributions to Student Learning 2009");
	recipient.addDetails("For continued commitment to applied student learning, individual enquiry and establishment of peer-mentoring in plant science.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - PADDY DALTON
	

	// START - Ms Rikki Mawad	
	recipient = new Recipient("Ms Rikki Mawad");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-rikki-mawad.jpg");
	recipient.addDetails("Citation for Outstanding Contributions to Student Learning 2008");
	recipient.addDetails("For commitment in ensuring student-centred and well informed contributions in university decision-making and for dedication in seeking to enhance the overall student experience.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - Ms Rikki Mawad	
	
	
	// START - Dr Melissa Nursey-Bray	
	recipient = new Recipient("Dr Melissa Nursey-Bray");
	recipient.addGrantType("ALTC Award Winner");
	recipient.addImagePath("img/recipients/photo-melissa-nursey-bray.jpg");
	recipient.addDetails("Citation for Outstanding Contributions to Student Learning 2009");
	recipient.addDetails("For sustained commitment to developing interdisciplinary understanding and critical thinking skills of students working in the field of environmental sustainability.");
	ALTCRecipients[ALTCRecipients.length] = recipient;
	// END - Dr Melissa Nursey-Bray	
	

	

	function next_recipient(recip_type)
	{
	  	recip = new Array();
		if(recip_type == "utas")
			recip = randomUTASImagePicker();
		else
			recip = randomALTCImagePicker();
			

		var title = recip[0];
		var recipient = recip[1];
		var details = recip[2];
		var image = recip[3];

		$output = "<div style='width: 190px; float: left;'><img src='" + image + "'/><br />";
		
		if(recip_type == "utas")
			$output = $output + "<form name='next_utas' id='next_utas' style='width: 190px; text-align: center;'><input type='button' name='next' id='next' value='&nbsp;Next&nbsp;' onclick='get_utas();'/></form></div>";
		else
			$output = $output + "<form name='next_altc' id='next_altc' style='width: 190px; text-align: center;'><input type='button' name='next' id='next' value='&nbsp;Next&nbsp;' onclick='get_altc();'/></form></div>";				
		
		$output += "</div>";
		$output = $output + "<div style='float: left; padding: 3px 5px 3px 3px; width: 400px; overflow: hidden;'><p><strong>" + title + "</strong></p><p>" + recipient + "</p><p>" + details + "</p><div>";

		
		
		if(recip_type == "utas")
			document.getElementById('utas_recipient').innerHTML = $output;
		else
			document.getElementById('altc_recipient').innerHTML = $output;
	}
	
	function get_utas()
	{
		next_recipient("utas");	
	}

	function get_altc()
	{
		next_recipient("altc");	
	}
