$(document).ready(function() {
	$("div.contentBox a").click(function() {
		if(this.title == 'popper') {
			var mylink = this.href;
			var img = new Image();
				img.onload = function() {
					bob = window.open(mylink,'myWindow','toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width=' + (img.width + 20) + ',height=' + (img.height + 20));
					bob.focus();
				}
				img.src = mylink;
			return false;
		} 
										 });
	
	$("a.sectionLink").click(function() { 
		$("ul#sectionTabs li").removeClass("currentTab");
		$(this).parent().addClass("currentTab");
		document.editForm.action = this.href + "?section=" + this.id;
		$("#editForm").submit();
		return false;
									  });
	
	
});