$(document).ready(function() {
	$("div.shadow").each(function(){
		var theclone = $(this).clone()
		theclone.removeClass();
		theclone.addClass("dropshadow");
		theclone.appendTo(this);
	});
	$("div.dropshadow a").each(function(){
		$(this).attr("color","black");
	});
});
