
	$().ready(function(){
		setupLightBoxLinks();
		setInterval("checkAnchor()", 300);
	});
	
	function setupLightBoxLinks(){
		$("#blogItems .blogItem img")
			.each(function(i){
				imgSrc = $(this).attr("src");
				if (imgSrc.indexOf("_md.jpg") > -1) {
					imgSrc = imgSrc.substring(0, imgSrc.indexOf("_md")) + "_lg.jpg";
				}
				imgCaption = $(this).attr("title");
				$(this).wrap('<a class="imgG" href="'+imgSrc+'" title="'+imgCaption+'"></a>');
			});
		$("#blogItems .blogItem .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();
				}
				
			}
		}
	}