$(function() {
	$('div#world').mouseover(function() {
		$(this).animate({opacity: 0.4}, 100);
	}).mouseout(function() {
		$(this).animate({opacity: 0.2}, 100);
	});
});

