// JavaScript Document
function expand(item){
	item.style.display = "inline";
}

function collaps(item){
	item.style.display="none";
}

function toggle(item){
	if(item.style.display=='' || item.style.display == "none")
		item.style.display="block";
	else
		item.style.display="none";
}

function highlight(id){
	var tag = document.getElementById(id);
	var div = document.createElement('div');
	div.className = 'highlight';
	tag.parentNode.insertBefore(div,tag);
	tag.parentNode.removeChild(tag);
	div.appendChild(tag);
	tag.style.color="#FFFFFF";
}

function unhighlight(id){

}
