$(function() {
	$('#events div.categories ul li')
		.hover(function(){$(this).addClass('hover');}, function () {$(this).removeClass('hover');})
		.find('a').each(function() {
			if (this.offsetWidth > 130) {
				$(this).width(130);
			}
		})
		.end()
		.find('span b')
			.each(function() {
				$(this).dropShadow({
					left: ($.browser.msie) ? -this.offsetLeft : 0
				});
			});
});
