//drunkbox.js
$(document).ready(function() {
	$('#drunkbox li a').hover(function() {
		$(this).stop().animate({ opacity: 1 }, 200  );
	}, function() {
		$(this).stop().animate({ opacity: 0.5 }, 300  );
	}).css({ opacity: 0.5 });
});