// JavaScript Document
//---------------------------------------
var hex=255; // Initial text color value.
function fadetext_legislation()
{ 
	if(hex>0) { //If color is not black yet
		hex-=11; // increase color darkness
		document.getElementById("latest_legislation_head").style.color="rgb("+hex+","+hex+","+hex+")";
		setTimeout("fadetext_legislation()",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=42; // Final title color value.
var hex_grn_fin=67; // Final title color value.
var hex_blu_fin=0; // 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_legislation(){ 
	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_legislation_title").style.color="rgb("+hex_red_var+","+hex_grn_var+","+hex_blu_var+")";
		setTimeout("fadetitle_legislation()",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.
	}
}

