
HIGLIGHT_COLOR_ON = "#ddddff"
HIGLIGHT_COLOR_OFF = "#fafacd";

//Highlight element
//
function he(el, on) {
	if (on == 1) {
		el.style.backgroundColor=HIGLIGHT_COLOR_ON;
	} else {
		el.style.backgroundColor=HIGLIGHT_COLOR_OFF;
	}

}

function ToggleDetails(a) {
	var div = a.parentNode.childNodes[1];
	var newY = $(document).scrollTop() + 30;
	if (!div.style.display || div.style.display == "none") {
		$(div).css("position", "absolute").show().animate( { width:"90%", height:"90%", left:"3%", top:newY+"px" }, 100 );

		if (div.innerHTML.indexOf(">Zapri</a>")<0)
			div.innerHTML += "<a href='#' style='float:right;border:1px solid black;padding:40px;' onclick='$(this.parentNode).css( { position:\"relative\", width:\"100%\", left:\"0px\", top:\"0px\"} ).hide();$(this).remove(); return false;'>Zapri</a>";
	} else {
		$(div).hide();
	}

}

function ToggleAllDetails() {
	$(".CMSNodeDetails").css( { position:"relative", width:"100%", left:"0px", top:"0px"} ).toggle();
}
