// JavaScript Document
var delay = 2000; //set delay between message change (in miliseconds)
var maxsteps=30; // number of steps to take to change from start color to endcolor
var stepdelay=30; // time in miliseconds of a single step
//**Note: maxsteps*stepdelay will be total time in miliseconds of fading effect
var startcolor= new Array(255,255,255); // start color (red, green, blue)
var endcolor=new Array(0,0,0); // end color (red, green, blue)

var fcontent=new Array();
begintag='<div style="font: normal 10px Arial; padding: 5px;">'; //set opening tag, such as font declarations
fcontent[0]="<a href='news_events.htm'><b>VACANCIES</b></a><br /> UEC is seeking to recruit Clinical HIV/AIDS Technical Advisor, Associate Clinical HIV/AIDS Advisor, Supply Chain Advisor,, more....<a href='/news_events.htm' class='main-menu'><font color='#FF0000'>Details...</font></a>";
fcontent[1]="<a href='http://www.akvo.org/rsr/project/216/'><b>ICT PROJECT</b></a><br />UCMB with support of Cordaid under the Connect for Change (C4C) consortium, is planning to introduce Web-based HMIS system, Electronic Patient Records Management System (EPRMS) and Teleconferencing Facility to her network... <a href='http://www.akvo.org/rsr/project/216/' class='main-menu'><font color='#FF0000'>Details...</font></a>";
fcontent[2]="<a href='news_events.htm' target='_blank'><b>UEC-UCMB wins ACT grant</b></a><br /> UEC-UCMB has won a five year grant from CDC to support comprehensive HIV/AIDS services in 12 Catholic Health Care Facilities.. <a href='news_events.htm' target='_blank' class='main-menu'><font color='#FF0000'>Details...</font></a>";
fcontent[3]="<a href='news_events.htm'><b>PUBLIC EXPENDITURE REVIEW </b></a><br />Budget Strategy and Priorities for the Medium Term: A response by Civil Society Organisations -CARITAS UGANDA<a href='news_events.htm' class='main-menu'><font color='#FF0000'>Details...</font></a>";
fcontent[4]="<a href='news_events.htm'><b>SALARY STRUCTURE FOR 2007/2008 FINANCIALYEAR</b></a><br />A Wage bill of Ushs.1112.26 billion has been provided for FY 2007/2008. This Circular serves to inform Accounting Officers and the Service in general, about the Salary Structure for 20r!7 /2008 Financial Year which takes effect from 1st July 2007.<br /><a href='news_events.htm' class='main-menu'><font color='#FF0000'>Details...</font></a>";
fcontent[5]="<a href='news_events.htm'><b>position paper:</b></a><br />UCMB-UPMB Joint position paper on subsisides for new antimalarial treatment<a href='news_events.htm' class='main-menu'><font color='#FF0000'>Details...</font></a>";
fcontent[6]="<a href='articles.htm'><b>UCMB – UPMB - UMMB:FACTS AND FIGURES OF THE PNFPs August 2007</b></a><br />KNOWING AND UNDERSTANDING THE FACILITY-BASED PNFP HEALTH SUBSECTOR IN UGANDA<a href='articles.htm' class='main-menu'><font color='#FF0000'>Details...</font></a>";
fcontent[7]="<a href='http://www.who.int/whr/2007/whr07_en.pdf'><b>The world health report 2007:</b></a><br />A safer future: global public health security in the 21st century<a href='http://www.who.int/whr/2007/whr07_en.pdf' class='main-menu'><font color='#FF0000'>Details...</font></a>";
closetag='</div>';

var fwidth='90px'; //set scroller width
var fheight='150px'; //set scroller height

var fadelinks=1;  //should links inside scroller content also fade like text? 0 for no, 1 for yes.

///No need to edit below this line/////////////////


var ie4=document.all&&!document.getElementById;
var DOM2=document.getElementById;
var faderdelay=0;
var index=0;


/*Rafael Raposo edited function*/
//function to change content
function changecontent(){
  if (index>=fcontent.length)
    index=0
  if (DOM2){
    document.getElementById("fscroller").style.color="rgb("+startcolor[0]+", "+startcolor[1]+", "+startcolor[2]+")"
    document.getElementById("fscroller").innerHTML=begintag+fcontent[index]+closetag
    if (fadelinks)
      linkcolorchange(1);
    colorfade(1, 15);
  }
  else if (ie4)
    document.all.fscroller.innerHTML=begintag+fcontent[index]+closetag;
  index++
}

// colorfade() partially by Marcio Galli for Netscape Communications.  ////////////
// Modified by Dynamicdrive.com

function linkcolorchange(step){
  var obj=document.getElementById("fscroller").getElementsByTagName("A");
  if (obj.length>0){
    for (i=0;i<obj.length;i++)
      obj[i].style.color=getstepcolor(step);
  }
}

/*Rafael Raposo edited function*/
var fadecounter;
function colorfade(step) {
  if(step<=maxsteps) {	
    document.getElementById("fscroller").style.color=getstepcolor(step);
    if (fadelinks)
      linkcolorchange(step);
    step++;
    fadecounter=setTimeout("colorfade("+step+")",stepdelay);
  }else{
    clearTimeout(fadecounter);
    document.getElementById("fscroller").style.color="rgb("+endcolor[0]+", "+endcolor[1]+", "+endcolor[2]+")";
    setTimeout("changecontent()", delay);
	
  }   
}

/*Rafael Raposo's new function*/
function getstepcolor(step) {
  var diff
  var newcolor=new Array(3);
  for(var i=0;i<3;i++) {
    diff = (startcolor[i]-endcolor[i]);
    if(diff > 0) {
      newcolor[i] = startcolor[i]-(Math.round((diff/maxsteps))*step);
    } else {
      newcolor[i] = startcolor[i]+(Math.round((Math.abs(diff)/maxsteps))*step);
    }
  }
  return ("rgb(" + newcolor[0] + ", " + newcolor[1] + ", " + newcolor[2] + ")");
}

//if (ie4||DOM2)
document.write('<div id="position" style="left:300px; top:420px; width:250px; height:250px; z-index:3; background-color:#F3F3F3; overflow:auto"><div id="fscroller" class="body1plain"></div></div>');
//document.write('<div id="fscroller" style="position:absolute;width:'+fwidth+'; height:'+fheight+'; z-index:1"></div>');
//if (window.addEventListener)
//window.addEventListener("load", changecontent, false)
//else if (window.attachEvent)
//window.attachEvent("onload", changecontent)
//else if (document.getElementById)
window.onload=changecontent

   


