$(document).ready(function(){
	var imgwidth = $("#image img").width();
	var halfwidth = 0-(imgwidth/2);
	$("#image").css("margin-left",halfwidth).css({position: "absolute",left: "399px"}); // 399px is half the size of the #wrapper div. If the width of the site changes, this number will need to change accordingly.
	$("div.dropshadow").wrap("<div class='wrap1'><div class='wrap2'><div class='wrap3'>"+"</div></div></div>");
});
