
	$().ready(function(){
		setupLightBoxLinks();
		setInterval("checkAnchor()", 300);
	});
	
	function setupLightBoxLinks(){
		$(".postLtCol .content img, .postLtCol .postGallery img")
			.each(function(i){
				if ($(this).hasClass("noLTB") == false) {
					imgSrc = $(this).attr("src");
					if (imgSrc.indexOf("_md.jpg") > -1) {
						imgSrc = imgSrc.substring(0, imgSrc.indexOf("_md")) + "_lg.jpg";
					} else if (imgSrc.indexOf("_tn.jpg") > -1) {
						imgSrc = imgSrc.substring(0, imgSrc.indexOf("_tn")) + "_lg.jpg";
					}
					imgCaption = $(this).attr("title");
					$(this).wrap('<a class="imgG" href="'+imgSrc+'" title="'+imgCaption+'"></a>');
				}
			});
		$(".postItem .imgG").lightBox();
	}
	
	var currentAnchor = null;
	
	function checkAnchor(){
		if(currentAnchor != document.location.hash){
			currentAnchor = document.location.hash;
			
			if (!currentAnchor || currentAnchor == "" || currentAnchor == "#") {
				
			} else {
			
				theAnchor = currentAnchor.substring(1);
				if (theAnchor == "print") {
					window.print();
				}
				
			}
		}
	}
