//jQuery Plugin: Drop Shadow Text
// call like this: $(element).textDropShadow();
(function($) {
	$.fn.textDropShadow = function(){
		$(this).html('<span class="shadow">'+$(this).html()+'</span><span>'+$(this).html()+'</span>');
		return $(this);
	}
})(jQuery);

