//pre-load images
//var listImg = new Image();
//listImg.src = '';
var listImg = new Image();
listImg.src = 'images/fp_banik.jpg';


function makeNews(c,l,f,i){
	this.copy = c;
	this.link = l;
	this.follow = f;
	this.img = i;
	this.write = writeNews;
}

function writeNews(){
	var str = '';
	str += '<a href="' + this.link + '">';
	str += '<img border="0" src="' + this.img.src + '"></a><br>';
	str += this.copy + '<br>';
        str +=  '<a href="' + this.link + '">' + this.follow + '</a>';
	return str;
}

var newsArray = new Array();
//newsArray[0] = new makeNews("<b>Bhavesh Patel</b>, Director <br> School of Petroleum Management<br>",'ri_bhaveshpatel.html','Read More',listImg).write();

newsArray[0] = new makeNews("<b>P K Banik</b>, Director General<br>Pandit Deendayal Petroleum University<br>",'ri_banik.html','Read More',listImg).write();


var nIndex = 0;
var timerID = null;
function rotateNews(){
	var len = newsArray.length;
	if(nIndex >= len)
		nIndex = 0;
	document.getElementById('stories').innerHTML = newsArray[nIndex];
	nIndex++;
	timerID = setTimeout('rotateNews()',4000);
}
function pauseNews() {
	if (timerID != null) {
		clearTimeout(timerID);
		timerID = null;
	}
}

function playNews() {
	if (timerID == null) {
		timerID = setTimeout('rotateNews()', 1000);
	}
}

