var pubzImg = new Image();
pubzImg.src = '/en_GX/gx/forest-paper-packaging/assets/net320.jpg';
var pubdImg = new Image();
pubdImg.src = '/en_GX/gx/forest-paper-packaging/assets/branch2010a.jpg';
var pubtImg = new Image();
pubtImg.src = '/en_GX/gx/forest-paper-packaging/events/23rd-fpp-conference/assets/agenda-23-final.gif';
var pubaImg = new Image();
pubaImg.src = '/en_GX/gx/forest-paper-packaging/assets/sustainable1a.jpg';
var pubmImg = new Image();
pubmImg.src = '/en_GX/gx/forest-paper-packaging/assets/ceo-2009a.jpg';




function makeSpotlight(t,c,l,f,i){
	this.title = t;
	this.copy = c;
	this.link = l;
	this.follow = f;
	this.img = i;
	this.write = writeSpotlight;
}

function writeSpotlight(){
	var str = '';
	str += '<a href="' + this.link + '">';
	str += '<img align="left" hspace="10" border="0" src="' + this.img.src + '"' + 'alt="' + this.title + '"></a>';
	str += '<b>' + this.title + '</b>' + '&nbsp;' + '<br><br>'
	str += this.copy + '&nbsp;';
    str += 'See&nbsp;' + '<a href="' + this.link + '">' + this.follow + '</a>' + '.';
	return str;
}

var newsArray = new Array();


newsArray[0] = new makeSpotlight("Global Forest and Paper Industry: Net Earnings Summary - Three months ended 31 March 2010","This Net Earnings Summary is prepared by PricewaterhouseCoopers from financial statements issued by the companies noted. Canadian dollars are used unless otherwise noted. All comparative figures are with the three months ended March 2010.",'http://www.pwc.com/ca/en/forest-paper-packaging/global-net-earnings-summary.jhtml "target=_blank',"more", pubzImg).write();//Global Forest and Paper Industry: Net Earnings Summary — Three months ended 31 March 2010

newsArray[1] = new makeSpotlight("Forest Paper and Packaging Deals. Branching Out - 2009 Annual Review","Forest, Paper and Packaging Deals 2009 reviews deal activity in the FPP industries. Download the publication to read our perspective on latest deal trends and expectations for 2010",'/en_GX/gx/forest-paper-packaging/publications/branching-out2009.jhtml',"more", pubdImg).write();//Forest Paper and Packaging Deals. Branching Out – 2009 Annual Review

newsArray[2] = new makeSpotlight("23rd annual PricewaterhouseCoopers global forest and paper industry conference - Transformation through innovation","The forest and paper sector is changing. It&rsquo;s a matter of survival. Industry leaders met at the 23rd PwC Annual Global Forest & Paper Industry Conference on 11th May. Download presentation materials to read their perspectives on the future of the industry.",'/en_GX/gx/forest-paper-packaging/events/23rd-fpp-conference/transformation-through-innovation.jhtml',"more", pubtImg).write();//23rd annual PricewaterhouseCoopers global forest and paper industry conference - Transformation through innovation

newsArray[3] = new makeSpotlight("Sustainable Forest Finance Toolkit","Are you a financier of the forestry industry?  Are you aware of key environmental and social risks and issues posed by your clients?  PwC and the WBCSD have jointly developed this toolkit, designed to support the financial sector in sustainable financing of industries impacting forests.",'http://www.pwc.co.uk/eng/issues/forest_finance_home.html',"more", pubaImg).write();//Sustainable Forest Finance Toolkit

newsArray[4] = new makeSpotlight("CEO Perspectives: Viewpoints of CEOs in the forest, paper & packaging industry worldwide - 2010 Edition","PricewaterhouseCoopers recently conducted its third series of in-depth interviews with CEOs in the Forest, Paper and Packaging (FPP) industry. We interviewed 33 executives from leading companies around the world. The objective, as with the first two sets of interviews in 2006 and 2007, was to learn more about executives&rsquo; opinions of the state of the industry, the key issues it faces and its future direction.",'/en_GX/gx/forest-paper-packaging/ceo2009/index.jhtml',"more", pubmImg).write();//CEO Perspectives: Viewpoints of CEOs in the forest, paper & packaging industry worldwide - 2010 Edition






var nIndex = 0;
var timerID = null;
function rotateSpotlight(){
	var len = newsArray.length;
	if(nIndex >= len)
		nIndex = 0;
	document.getElementById('spotlight').innerHTML = newsArray[nIndex];
	nIndex++;
	timerID = setTimeout('rotateSpotlight()',6500);
}
function pauseSpotlight() {
	if (timerID != null) {
		clearTimeout(timerID);
		timerID = null;
	}
}

function playSpotlight() {
	if (timerID == null) {
		timerID = setTimeout('rotateSpotlight()',650);
	}
}

