//AJAX
var prevUrl = "";

function loadContent(childId,contentUrl) {                            
	if (prevUrl != contentUrl)
	{
		if (document.getElementById(childId))
		{
			document.getElementById(childId).innerHTML = "<div class=\"ajaxLoader\">&nbsp;</div>";
			document.getElementById(childId).style.display = "block";
		}
	}	
	var loader = new Ajax.Updater(childId, contentUrl, { method: 'get', evalScripts: true });
	prevUrl = contentUrl;
}

function closeDetail(){
		if (document.getElementById("ajaxContent"))
		{
			document.getElementById("ajaxContent").style.display = "none";
			document.getElementById("ajaxContent").innerHTML = "<div class=\"ajaxLoader\">&nbsp;</div>";			
		}
}

function switchImage(iUrl,imgId,iCaption){
		if (document.getElementById("fullImg"))
		{		
			var iContent = "<img src=\""+iUrl+"\" />";
			if (imgId != -1)
			{
				iContent = '<a href="/fullsize/cs/'+imgId+'/700/0/90/" rel="lightbox[news]" title="'+iCaption+'">'+iContent+'</a>';
			}
			document.getElementById("fullImg").innerHTML = iContent;//"<img src=\""+iUrl+"\" />";	
			initLightbox();
		}
}