$(document).ready(function () {
	$('#cont a').animate({ "opacity" : .5 });

	$('#cont a').hover(function() {
		$(this).stop().animate({ "opacity" : 1 });
	}, function() {
		$(this).stop().animate({ "opacity" : .5 });
	});
});

