	
	//ron_Head = new Image();      
	//ron_Head.src = "memberPics/ron_head.gif";
	//ron_Name = new Image();
	//ron_Name.src = "memberPics/ron_name.gif";
	ID="";
	color = "";
	size = 14;
	
	function changePICon(imgName)
	{
		document.images[imgName].src = "memberPics/" + imgName + "_head.gif";
	}
	function changePICoff(imgName)
	{
		document.images[imgName].src = "memberPics/"+ imgName + "_name.gif";
	}
	
	
	function fader(id,option)
	{
		ID=id;
		color=document.getElementById(ID).style.color;
		hex=255;
		if(option == "2")
			this.fadetext();
		if(option == "1")
			this.fade_text_size();
		
	}
	
	function fadetext()
	{ 	if(hex>0)
		{			
			hex-=20;
			
			document.getElementById(ID).style.color="rgb("+(hex+hex)+","+hex+","+(hex+15)+")";
			setTimeout("fadetext()", 10); 
		}
		else 
			setColor(color);
		
		//document.getElementById(ID).style.color = color;
	}
	function fade_text_size()
	{ 	if(hex>0)
		{			
			hex-=20;
			
			document.getElementById(ID).style.color="rgb("+(hex+hex)+","+(hex)+","+(hex+14)+")";
			//document.getElementById(ID).style.color="rgb("+hex+","+hex+","+hex+")";
			document.getElementById(ID).style.fontSize=(hex/5-hex/10+14 +"px");
			setTimeout("fade_text_size()", 1); 
		}
		else 
			setColor(color);
		
		//document.getElementById(ID).style.color = color;
	}
	function setColor()
	{//DB7154--219,113,84
		
		document.getElementById(ID).style.color = "rgb("+219+","+113+","+84+")";
		//document.getElementById(ID).style.fontSize=(14 +"px");
	}
	function reset(id)
	{
		ID=id;
		document.getElementById(ID).style.color = "rgb("+0+","+0+","+0+")";
		document.getElementById(ID).style.fontSize=(14 +"px");
	}
	
	
	

