// JavaScript Document
function SelectedTab(selectedId,unselectedId)
{
	var imagepath="images";	
	var image="active.gif";
	var color="#cc6666";
	/*
	switch(selectedId)
	{
			case 'perdet_tab':
				image="active.gif";
				color="#008099";
				break;			
			case 'payment_tab':
				image="stats_tab_hover.gif";
				color="#008099";				
				break;
			case 'carinfo_tab':
				image="tab_friends_hover.gif";
				color="#008099";
				break;
			case 'preview_tab':
				image="tab_birthday_hover.gif";
				color="#008099";
				break;
			case 'updates_tab':
				image="tab_updates_hover.gif";
				color="#008099";
				break;
	}	
	*/
	
	document.getElementById(selectedId).style.backgroundImage="url("+imagepath+"/"+image+")";
	document.getElementById(selectedId).style.color=color;
	var unselected=unselectedId.split(",");
	for(i=0;i<unselected.length;i++)
	{
		/*
		switch(unselected[i])
		{
			case 'msg_tab':
				image="messages_tab_normal.gif";
				color="#FFFFFF";
				break;			
			case 'stats_tab':
				image="stats_tab_normal.gif";
				color="#FFFFFF";
				break;
			case 'friends_tab':
				image="tab_friends_normal.gif";
				color="#FFFFFF";
				break;
			case 'birthday_tab':
				image="tab_birthday_normal.gif";
				color="#FFFFFF";
				break;
			case 'updates_tab':
				image="tab_updates_normal.gif";
				color="#FFFFFF";
				break;
		}
		*/
		var image="normal.gif";
		var color="#0057A4";
		document.getElementById(unselected[i]).style.backgroundImage="url("+imagepath+"/"+image+")";
		document.getElementById(unselected[i]).style.color=color;
	}
}