jQuery.buildShadows = function(){
	jQuery(".dropshadow").each(function(i){
		var plug = jQuery(this).html();
		var path = "/clients/jekyll/blog/wp-content/themes/jekyll/images/";
		var spacer = "<img src='"+path+"spacer.gif' width='5' height='5' border='0'>";
		var topLeft = "<img src='"+path+"shadowTL.jpg' width='5' height='5' border='0' align='left' style='display:inline' />";
		var btmLeft = "<img src='"+path+"shadowBL.jpg' width='5' height='5' border='0' align='left' style='display:inline' />";
		var topRight = "<img src='"+path+"shadowTR.jpg' width='5' height='5' border='0' align='right' style='display:inline' />";
		var btmRight = "<img src='"+path+"shadowBR.jpg' width='5' height='5' border='0' align='right' style='display:inline' />";
		jQuery(this).html("<table cellpadding='0' cellspacing='0' border='0' width='100%'><tr><td colspan='3' id='shdwTop'>"+topLeft+topRight+"</td></tr><tr><td id='shdwLeft'>"+spacer+"</td><td id='shdwContent'>"+plug+"</td><td id='shdwRight'>"+spacer+"</td></tr><tr><td colspan='3' id='shdwBottom'>"+btmLeft+btmRight+"</td></tr></table>");
	});
}
jQuery(document).ready(function(){jQuery.buildShadows()});