$().ready(function(){
	$('.rating_hover').hover(function(e){
		var div=$('div#'+$(this).attr('rel'));
		var pos=$(this).position();
		var left=pos.left - div.width()-5;
		var top=pos.top - 26;
		div.css( {top:top , left:left} );
		div.fadeIn();
	},function(e){
		$('div#'+$(this).attr('rel')).fadeOut();
	});
});