var _$ = jQuery;


_$(document).ready(function(){
	_$(".twodotzerolink")
		.bind('mouseover',function(){
			_$(".dinp").html(_$(this).attr('title'));
		})
		.bind('mouseout',function(){
			_$(".dinp").html("&nbsp;");
		});
	
});