// JavaScript Document
//---------------------------------------
var hex=255; // Initial text color value.

function fadetext(){ 
	if(hex>0) { //If color is not black yet
		hex-=11; // increase color darkness
		//document.getElementById("latest_news_head").style.color="rgb("+hex+","+hex+","+hex+")";
		setTimeout("fadetext()",75); 
	}
	else
		hex=255; //reset hex value
}

//---------------------------------------
var hex_red_int=255; // Initial title color value.
var hex_grn_int=255; // Initial title color value.
var hex_blu_int=255; // Initial title color value.
var hex_red_fin=2; // Final title color value.
var hex_grn_fin=99; // Final title color value.
var hex_blu_fin=125; // Final title color value.

//Set variable color
var hex_red_var;
var hex_grn_var;
var hex_blu_var;
hex_red_var = hex_red_int;
hex_grn_var = hex_grn_int;
hex_blu_var = hex_blu_int;

function fadetitle(){ 
	if((hex_red_var>=hex_red_fin) || (hex_grn_var>=hex_grn_fin) || (hex_blu_var>=hex_blu_fin)) 
	{ //If color is not dark yet
		hex_red_var-=((hex_red_int-hex_red_fin)*0.03); // increase color darkness
		hex_grn_var-=((hex_grn_int-hex_grn_fin)*0.03); // increase color darkness
		hex_blu_var-=((hex_blu_int-hex_blu_fin)*0.03); // increase color darkness
		//document.getElementById("latest_news_title").style.color="rgb("+hex_red_var+","+hex_grn_var+","+hex_blu_var+")";
		setTimeout("fadetitle()",25); 
	}
	else
	{
		hex_red_var = hex_red_int; // Reset title color value.
		hex_grn_var = hex_grn_int; // Reset title color value.
		hex_blu_var = hex_blu_int; // Reset title color value.
	}
}

