$(document).ready(function(){
$('#infobox, #addbox').css({'opacity':'0.5'});
	$('#infobox, #addbox').mouseover(function(){
		$(this).animate({
			opacity: 1,
			}, 200, function() {
		});
	});
	$('#infobox, #addbox').mouseleave(function(){
		$(this).animate({
			opacity: 0.5,
			}, 200, function() {
		});
	});			
});
