$(document).ready(function(){
$(".screenLink > .screenshot").hide()
$(".screenLink").hover(function(){
	$(this).find(".screenshot").css("top", (this.offsetTop + this.offsetParent.offsetTop - 200) + "px")
	$(this).find(".screenshot").show();
}, function(){
	$(this).find(".screenshot").hide();})
	
$(".expand").click(function(){
	$(this).parent().parent().parent().find(".commentBody").slideToggle(200);
	$(this).parent().find(".expand").toggle()
})
$(".inlineScreenshot").wrap('<fieldset style="border:1px #BBBBBB dashed"></fieldset>');
$(".inlineScreenshot").before('<legend style="color:#BBBBBB">Screenshot</legend>');
	})
