jQuery(document).ready(function() {
	jQuery(".other-shows").delegate("li", "mouseover mouseout", function(e) {
		if (e.type == 'mouseover') {
		jQuery(".other-shows li").not(this).dequeue().animate({opacity: "0.3"}, 300);
    	} else {
		jQuery(".other-shows li").not(this).dequeue().animate({opacity: "1"}, 300);
   		}
	});
});
