// JavaScript Document
function insertMarquee(div_id)
{
	var message = "<ul><li>Our college continues to be Distance Education Center in the year 2010 also.</li><br /><li>NAAC Reaccreditation,<b>'B'</b> grade 2-73 Valid from 8 th Jan. 2011</li></ul>";
	var m = new DnyandeepMarquee();
	m.scrollAmount = 3;
	m.direction = "up";
	m.width = "100%";
	m.insertInto(div_id, message);
}
