var _LiteBoxElements = new Array();

$(document).ready(function() {
	document.getElementById("debug").style.display = "none";
	
	for (var i in document.getElementsByTagName("a")) {
		if (document.getElementsByTagName("a")[i].rel == "lightbox") {
			document.getElementsByTagName("a")[i].rel = "lightbox" + i;
		}
	}
	
	$("a[class='ltb']").colorbox({transition:"fade", slideshow:true});
	
	$("#click").click(function(){
		$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
		return false;
	});

	/*
	for(var i in document.getElementsByTagName("a")) {
		if(document.getElementsByTagName("a")[i].className == "ltb") {
			var q_Anchor = document.getElementsByTagName("a")[i];
			q_Anchor.id = "ltb" + i;
			$("ltb" + i).colorbox();
		}
	}*/
});
