$(document).ready(function() {
	$("body:not(.scrapbook) #content").wrap("<div class=\"shadow\" style=\"margin-top: 60px;\"></div>");
	
	$("div.shadow").each(function () {
		var $this = $(this);
		var $child = $this.children("eq(0)");
		var cWidth = ($child[0].offsetWidth);
		var cHeight = ($child[0].offsetHeight);
		$this.css("width", cWidth + "px").css("height", cHeight + "px");
		$this.append("<div class=\"shadow-right\" style=\"height:" + cHeight + "px\"></div><div class=\"shadow-bottom\" style=\"width:" + cWidth + "px\"></div>");
	});
	$("#header").css("zoom", "1");
});