/* DjID Page */
function djListItemMOn(obj) {
	//obj.style.background = "black"
	obj.className = "djListItemOver";
	// Show behind div
	/*var oBehind = document.getElementById("djListBehind");
	oBehind.style.top = (obj.offsetTop + 2) + "px";
	oBehind.style.display = "block";*/
}

function djListItemMOff(obj) {
	obj.className = "djListItem";
	/*// Hide behind div
	var oBehind = document.getElementById("djListBehind");
	oBehind.style.display = "none";*/
}

function getURL(url) {
	document.location = url;
}