$(document).ready(function(){

	$('.rollover-desc').hide();
	$('#right-column a')
		.hover(function(){
			$(this).siblings('.rollover-desc').fadeIn('fast');			
		},function(){
			$(this).siblings('.rollover-desc').fadeOut('fast');
		});

});
