$(function() {
	$("#contentright").hover(function() {
		$("#info").fadeIn("normal");
	},	function() {
		$("#info").fadeOut("normal");
	});
});