$.fn.aDropShadow = function(){
	return this.each(function(){
		$(this).wrap($('<div><\/div>').addClass('effectsBox').width($(this).width() + 5).height($(this).height() + 10));
		$(this).css({ float: 'left' });
		$('<img>').attr('src', 'images/img_shadow_tr.png').css({ float: 'left' }).appendTo($(this).parent());
		$('<img>').attr('src', 'images/img_shadow_r.png').css({ float: 'left' }).width(5).height($(this).height() - 8).appendTo($(this).parent());
		$('<img>').attr('src', 'images/img_shadow_bl.png').css({ float: 'left' }).width(9).height(10).appendTo($(this).parent());
		$('<img>').attr('src', 'images/img_shadow_b.png').css({ float: 'left' }).width($(this).width() - 14).height(10).appendTo($(this).parent());
		$('<img>').attr('src', 'images/img_shadow_br.png').css({ float: 'left' }).width(10).height(10).appendTo($(this).parent());
		});
	};