/* 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", "PMI President Summer Greetings ...", "", "http://www.linkedin.com/groupAnswers?viewQuestionAndAnswers=&gid=2961710&discussionID=23590793&sik=1278529049022&trk=ug_qa_q&goback=.ana_2961710_1278529049022_3_1")
newsDB[newsDB.length] = loadRow("2", "2010 Recognition Event Photos Now Available...", "", "http://www.pmimanitoba.org/WebLibrary/photos/PMI%20Manitoba%202010%20Recognition%20Event/album/index.html")
newsDB[newsDB.length] = loadRow("3", "Free Press Coverage of the Annual Recognition Event...", "", "../pdf/FreePress_Mar_8.pdf")
newsDB[newsDB.length] = loadRow("4", "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")

  return newsDB;
}

