    function getTheDate(){
	var currentTime  		= new Date();
	var day11 	= currentTime .getDate();
	var month11 = currentTime .getMonth() + 1;
	var year11 	= currentTime .getFullYear();

	if (day11 < 10) day11 = "0" + day11;
	if (month11 < 10) month11 = "0" + month11;


	var cdate11 = day11 + "/" + month11 + "/" + year11 ;

	if (document.all) document.all.thedate.innerHTML = cdate11;
	else if (document.getElementById) document.getElementById("thedate").innerHTML = cdate11;
	else document.write(cdate11);
    }
	
	
	function getTheTime(){
	var currentTime  		= new Date();
	var hours11 = currentTime .getHours();
	var min11 	= currentTime .getMinutes();

	if (hours11 < 10) 	hours11 = "0" + hours11;
	if (min11 < 10) 	min11 = "0" + min11;

	var ctime11 = hours11 + ":" + min11;

	if (document.all) document.all.thetime.innerHTML = ctime11;
	else if (document.getElementById) document.getElementById("thetime").innerHTML = ctime11;
	else document.write(ctime11);
    }
	
function alltime()
{
	getTheTime();
	getTheDate();
}

window.onload	=  alltime;    



function hideAllFinancial() {
	//document.getElementById('fdata8').style.display = 'none';
	//document.getElementById('fdata7').style.display = 'none';
	//document.getElementById('fdata6').style.display = 'none';
	//document.getElementById('fdata5').style.display = 'none';

	document.getElementById('fdata9_li').style.backgroundColor = '#FFD24F';
	document.getElementById('fdata9_li').style.color = '#333333';
	document.getElementById('fdata8_li').style.backgroundColor = '#FFD24F';
	document.getElementById('fdata8_li').style.color = '#333333';
	document.getElementById('fdata7_li').style.backgroundColor = '#FFD24F';
	document.getElementById('fdata7_li').style.color = '#333333';
	document.getElementById('fdata6_li').style.backgroundColor = '#FFD24F';
	document.getElementById('fdata6_li').style.color = '#333333';
	document.getElementById('fdata5_li').style.backgroundColor = '#FFD24F';
	document.getElementById('fdata5_li').style.color = '#333333';
}

function deselectAllInterviews() {
      document.getElementById('d2009_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2009_li').style.color = '#333333';
      document.getElementById('d2008_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2008_li').style.color = '#333333';
      document.getElementById('d2007_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2007_li').style.color = '#333333';
      document.getElementById('d2006_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2006_li').style.color = '#333333';
}

function deselectAllNews() {
      document.getElementById('d2010_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2010_li').style.color = '#333333';
      document.getElementById('d2009_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2009_li').style.color = '#333333';
      document.getElementById('d2008_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2008_li').style.color = '#333333';
      document.getElementById('d2007_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2007_li').style.color = '#333333';
      document.getElementById('d2006_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2006_li').style.color = '#333333';
      document.getElementById('d2005_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2005_li').style.color = '#333333';
      document.getElementById('d2004_li').style.backgroundColor = '#FFD24F';
      document.getElementById('d2004_li').style.color = '#333333';
}



function toggleNewsLayer( whichLayer ) {
	var liElem, vis;
	if( document.getElementById ) { // this is the way the standards work
		liElem = document.getElementById( whichLayer + "_li" );
	}
	else if( document.all ) { // this is the way old msie versions work
		liElem = document.all[whichLayer + "_li" ];
	}
	else if( document.layers )  { // this is the way nn4 works
		liElem = document.layers[whichLayer + "_li" ];
	}

	if (liElem != null) {
		//deselectAllNews();
		//elem.style.display = 'block';
        	liElem.style.backgroundColor = '#ffdc4e';
	        liElem.style.color = '#666666';
	}
}

function toggleFinancialLayer( whichLayer ) {
	var liElem, vis;
    if( document.getElementById ) { // this is the way the standards work
        liElem = document.getElementById( whichLayer + "_li" );
    }
    else if( document.all ) { // this is the way old msie versions work
        liElem = document.all[whichLayer + "_li" ];
    }
    else if( document.layers )  { // this is the way nn4 works
        liElem = document.layers[whichLayer + "_li" ];
    }
    if (liElem != null) {
	//deselectAllInterviews();
        liElem.style.backgroundColor = '#ffdc4e';
        liElem.style.color = '#666666';
   }
}



 function toggleInterviewsLayer( whichLayer ) {

    var liElem, vis;
    if( document.getElementById ) { // this is the way the standards work
        liElem = document.getElementById( whichLayer + "_li" );
    }
    else if( document.all ) { // this is the way old msie versions work
        liElem = document.all[whichLayer + "_li" ];
    }
    else if( document.layers )  { // this is the way nn4 works
        liElem = document.layers[whichLayer + "_li" ];
    }
    if (liElem != null) {
	//deselectAllInterviews();
        liElem.style.backgroundColor = '#ffdc4e';
        liElem.style.color = '#666666';
   }
 }


function hideAll() {
	document.getElementById('fdata9').style.display = 'none';
	document.getElementById('fdata8').style.display = 'none';
 	document.getElementById('fdata7').style.display = 'none';
	document.getElementById('fdata6').style.display = 'none';
	document.getElementById('fdata5').style.display = 'none';
	document.getElementById('fdata9_li').style.backgroundColor = '#ffe497';
	document.getElementById('fdata8_li').style.backgroundColor = '#ffe497';
	document.getElementById('fdata7_li').style.backgroundColor = '#ffe497';
	document.getElementById('fdata6_li').style.backgroundColor = '#ffe497';
	document.getElementById('fdata5_li').style.backgroundColor = '#ffe497';
}
 
function toggleLayer( whichLayer ) {
	var elem, liElem, vis;
	if( document.getElementById ) { // this is the way the standards work
		elem = document.getElementById( whichLayer );
		liElem = document.getElementById( whichLayer + "_li" );
	}
	else if( document.all ) { // this is the way old msie versions work
		elem = document.all[whichLayer];
		liElem = document.all[whichLayer + "_li" ];
 
	}
	else if( document.layers )  { // this is the way nn4 works
		elem = document.layers[whichLayer];
		liElem = document.layers[whichLayer + "_li" ];
	}
	if (elem != null) {
		hideAll();
		elem.style.display = 'block';
		liElem.style.backgroundColor = '#ffdc4e';
		liElem.style.color = '#666666';
	}
}