$(document).ready(function() {
// Arrow roll over doesn't work in FUCKING IE
$('div.right, div.left').css('opacity', .60).hover(function() {
		$(this).stop().animate({opacity: 1.0}, 400);
	}, function() {
		$(this).stop().animate({opacity: .60}, 400);
	});
});

