/* News Functions for PMI website.

Author: Brendan O'Connor
Date: February 10, 2004

Author: Ray Hope
Date: July 31, 2007

*/
var newsDB = new Array()

function loadNewsDB()
{
	//function loadRow( aRanking, aHeader, aBody[], aDetailLink) - found in scripts/pmi.js
	// Ranked 1 to 4 for order of apperance, use 0 to not display from list
	// In the aBody field, use '[', multi strings, and ']' for paragraphing
	// e.g.  newsDB[newsDB.length] = loadRow("0", "<title>...", ["",""], "")

  


newsDB[newsDB.length] = loadRow("1", "2010-11 Board Candidates...", "", "../WebLibrary/files/2010-11 Slate of Nominees.pdf")
 
newsDB[newsDB.length] = loadRow("2", "Congratulations SCU, winner of 2010 POY Award...", "", "../WebLibrary/files/NEWS RELEASE - Feb 9-10.pdf")
 
newsDB[newsDB.length] = loadRow("3", "Free Press Coverage of POY Awards...", "", "http://www.winnipegfreepress.com/business/steinbach-credit-union-wows-em-83998112.html")
  
newsDB[newsDB.length] = loadRow("0", "Call for Board Nominations for 2010...", "", "../WebLibrary/Call for Nominations and Position Descriptions - 2010.pdf")

newsDB[newsDB.length] = loadRow("0", "PMI Manitoba Congratulated on 15 Years...", "", "../WebLibrary/photos/15.pdf")

newsDB[newsDB.length] = loadRow("0", "PM Week 2009...", "", "../PMWeek") 

newsDB[newsDB.length] = loadRow("0", "PDD 09 Conference, Win Big Prizes...", "", "../conference/prizes.pdf")

  return newsDB;
}

