
$(document).ready(function(){   
	if(document.getElementsByTagName("body")[0].getAttribute("id") == "staffblog") {
		var div = document.getElementsByTagName("div");
		for(var i=0; i<div.length; i++) {
			if(div[i].className == "entry x") {
				var img = div[i].getElementsByTagName("img");
				if(img.length != 0) img[0].parentNode.className = "thickbox";
			}
		}
	}
});
