(function($){
	$.fn.dropshadow = function(){
		this.each(function(){
			$(this).hover(function(){
				$(this).css('-webkit-box-shadow','0px 0px 25px #B7DA99');
				$(this).css('-moz-box-shadow','0px 0px 25px #B7DA99');
			},function(){
				$(this).css('-webkit-box-shadow', '');
				$(this).css('-moz-box-shadow', '');
			});
		});
		return this;
	};
})(jQuery);

