$(function(){
	$(".voteBlock").live('mouseover',function(){	
		var id = $(this).attr('name');	
		$("#vote-now-dts"+id).show();
	});
	
	$(".voteBlock").live('hover',function(){
		var id = $(this).attr('name');		
		$("#vote-now-dts"+id).show();
	});	
	
	$(".voteBlock").live('mouseout',function(){
		var id = $(this).attr('name');		
		$("#vote-now-dts"+id).hide();
	});
});
