/**
*
* TextShadow is a very easy way to add shadow in de text osf your site/blog
* by
* Fernando Filho : http://fernandofilho.blogspot.com
*
*/
jQuery(document).ready(function(){
	var shadow = $(".shadow").html();
	$("<span class=bgshadow>"+shadow+"</span>").insertBefore(".shadow");
});