//News files are to be placed in the folder www.dmhs.ca/news
//Add new links to "newsfeed.js" to update the news column, and "www.dmhs.ca/news.html" to update the main news web page

//Enter newest news article at the top, and delete oldest from the bottom, to keep at least 4 articles in the news column at once

//newsdate[]= array containing the date of the news entry
//newstitle[]= array containing the title of the news entry
//newsurl[]= array containing the URL of the news entry

//sample only: 
//newsdate[newsdate.length]="24 Nov 2008";
//newstitle[newstitle.length]="Title of Article";
//newsurl[newsurl.length]="http://www.dmhs.ca/news/24_11_2008.html";

var newstitle=new Array();
var newsurl=new Array();
var newsdate=new Array();

newsdate[newsdate.length]="14 Dec 2011";
newstitle[newstitle.length]="Owasco Area Scouts Canada Leaders Learn How to Help Distressed Youth";
newsurl[newsurl.length]="http://www.dmhs.ca/news/14_12_2011.html";

newsdate[newsdate.length]="6 Dec 2011";
newstitle[newstitle.length]="Christmas Comes Early for DMHS Clients Thanks to Knights of Columbus";
newsurl[newsurl.length]="http://www.dmhs.ca/news/19_12_2011.html";

newsdate[newsdate.length]="2 Nov 2011";
newstitle[newstitle.length]="November is MOVEMBER at Durham Mental Health Services";
newsurl[newsurl.length]="http://www.dmhs.ca/news/02_11_2011.html";

newsdate[newsdate.length]="1 Nov 2011";
newstitle[newstitle.length]="Durham Mental Health Services Offers Training in Mental Health First Aid";
newsurl[newsurl.length]="http://www.dmhs.ca/news/01_11_2011.html";

newsdate[newsdate.length]="4 Oct 2011";
newstitle[newstitle.length]="Durham College and DMHS Team Up for 'Mind Your Body Day'";
newsurl[newsurl.length]="http://www.dmhs.ca/news/13_10_2011.html";

newsdate[newsdate.length]="4 Oct 2011";
newstitle[newstitle.length]="DMHS Brings Psychiatric Support into the Community Psychiatrists...";
newsurl[newsurl.length]="http://www.dmhs.ca/news/05_10_2011.html";

newsdate[newsdate.length]="6 Sep 2011";
newstitle[newstitle.length]="DMHS and Seamless Care Pharmacy Target Chronic Illness...";
newsurl[newsurl.length]="http://www.dmhs.ca/news/06_09_2011.html";

newsdate[newsdate.length]="23 Jun 2011";
newstitle[newstitle.length]="DMHS Hosts Peer Support Networking Day";
newsurl[newsurl.length]="http://www.dmhs.ca/news/23_06_2011.html";

newsdate[newsdate.length]="27 Jun 2011";
newstitle[newstitle.length]="Durham Mental Health Services Celebrates Official Opening of Barlow House";
newsurl[newsurl.length]="http://www.dmhs.ca/news/27_06_2011.html";

newsdate[newsdate.length]="16 Jun 2011";
newstitle[newstitle.length]="Durham Mental Health Services Starts New Workplace Wellness Program";
newsurl[newsurl.length]="http://www.dmhs.ca/news/16_06_2011.html";



