/*
 * GeckTOP.net - tools
 *
 * (based on jQuery)
 *
 * $Date: 2008-06-06
 */

// create shadow from around span text
$.fn.geckTextShadow = function() {
	$(this).css('position','relative');

	for (x=-1;x<=1;x++) {
		for (y=-1;y<=1;y++) {
			if(x!=0 && y!=0) {
				var span = $(this).clone();
				span.css({color:'black',position:'absolute',left:x, top:y}).prependTo(this);
			} 
		}
	}
}