/* TMENU-COMPONENT */

function TMenu_Focus(aID) {
	document.getElementById(aID).style.backgroundColor="#000080";
	document.getElementById(aID).style.paddingLeft="15px";
	}

function TMenu_Free(aID) {
	document.getElementById(aID).style.backgroundColor="#8A8AB4";
	document.getElementById(aID).style.paddingLeft="4px";
	}

function TMenu_Click(aHREF) {
	document.location.href = aHREF;
	}

/* TITEM-COMPONENT */

function TItem_Focus(aID) {
	document.getElementById(aID).style.backgroundColor="#F8F8F8";
	document.getElementById(aID).style.paddingLeft="20px";
	}

function TItem_Free(aID) {
	document.getElementById(aID).style.backgroundColor="#FFFFFF";
	document.getElementById(aID).style.paddingLeft="10px";
	}

function TItem_Click(aHREF) {
	document.location.href= aHREF;
	}

/* TLINKBOX-COMPONENT */

function TLBox_Focus(aID) {
	document.getElementById(aID).style.backgroundColor="#F8F8F8";
	}

function TLBox_Free(aID) {
	document.getElementById(aID).style.backgroundColor="transparent";
	}

function TLBox_Click(aHREF) {	
	document.location.href = aHREF;
	}

/* TLABEL-COMPONENT */

function TLabel_Focus(aID) {
	document.getElementById(aID).style.backgroundColor="#F8F8F8";
	document.getElementById(aID).style.borderStyle="dashed";
	document.getElementById(aID).style.borderWidth="1px";
	document.getElementById(aID).style.borderColor="#808080";
	}

function TLabel_Free(aID) {
	document.getElementById(aID).style.backgroundColor="transparent";
	document.getElementById(aID).style.borderStyle="none";
	document.getElementById(aID).style.borderWidth="0px";
	}

function TLabel_Click(aHREF) {
	document.location.href=aHREF;
	}


