/* dr.js */


function init_drsite(){

	$('.tip').tooltip({
		delay: 0,
		track: true,
		showURL: false,
		extraClass: "tooltip"
	});
	
	$('a.tip').click(function($e){
		$e.preventDefault();
	});
}

$(document).ready(function () {

  init_drsite();
});
