var total_news = 6; var cur_news = 0; var page_content = new Array(); var news_timer; page_content[0] = '
Latest News

Open House events at Oxford College
Oxford College will be holding Open Houses so you can learn more about our programs...

Read More    1/6 >'; page_content[1] = '
Latest News

Dental Hygiene program\'s accreditation renewed to 2015
Oxford College received confirmation from CDAC that our accreditation has been renewed
Read More    < 2/6 >'; page_content[2] = '
Latest News

Read the latest issue of MyOxford, the Oxford College Newsletter
In our latest issue, we talk about the expansion and upgrades currently taking place at the college.
Read More    < 3/6 >'; page_content[3] = '
Latest News

Trillium Meditec comes to Oxford looking for workers
Oxford College welcomed Andre Maraldo, President and CEO of Trillium Meditec Inc., yesterday to the campus, where he interviewed some of our students for potential careers in his company.
Read More    < 4/6 >'; page_content[4] = '
Latest News

Oxford College launches new Websites for Dental Hygiene and Clinical Research programs
Oxford College has launched two websites focusing on a pair of its most successful programs: Learndentalhygiene.ca showcases Oxford’s Dental Hygiene program, one of the largest in Canada, while Learnclinicalresearch.ca gives information about the Clinical Research Associate program.
Read More    < 5/6 >'; page_content[5] = '
Latest News

Oxford Dental Hygiene students excel at the National Board exams
The May results of the NDHCB exam for dental hygiene students show that 31 out of 34 Oxford students successfully passed....
Read More    < 6/6'; var total_news2 = 5; var cur_news2 = 0; var page_content2 = new Array(); var news2_timer; page_content2[0] = 'Our Dental Hygine Program Ranks Among the best in Canada Learn More'; page_content2[1] = 'Have a medical background? Consider becoming a Clinical Researcher Learn More'; page_content2[2] = 'Pharmaceutical Manufacturing is growing in Canada. Learn how we can train you for a career in this industry Learn More'; page_content2[3] = 'Interested in a career with a science background? Click here to learn about our Pharmaceutical QA/QC program Learn More'; page_content2[4] = 'Why Oxford College? Here are the top ten reasons to choose us Learn More'; function show_news(index){ if(index!=null) cur_news = index; if(cur_news>=total_news) cur_news -= total_news; document.getElementById('news_div').innerHTML = page_content[cur_news]; cur_news++; } show_news(); news_timer=setInterval('show_news()', 5000); function show_news2(index){ if(index!=null) cur_news2 = index; if(cur_news2>=total_news2) cur_news2 -= total_news2; document.getElementById('news2_div').innerHTML = page_content2[cur_news2]; cur_news2++; } show_news2(); news2_timer=setInterval('show_news2()', 5000);