  $(document).ready(function(){
	 $("#rotator2").rotator({
 ms : 4000 //time between rotations in miliseconds
}); 	
	 $('#diaryc ul li').each(function(index) {
									  
 $(this).hover(function(){			
		$('.hidden').eq(index).fadeIn("fast");		
			$().mousemove(function(e){
  	 	$('.hidden').eq(index).css("left", (e.pageX-150)+"px");
   		$('.hidden').eq(index).css("top", (e.pageY+6)+"px");
		});
}, function(){
	$('.hidden').eq(index).fadeOut("fast");
});
				
									  });
	
  });
