$(document).ready(function(){
	$(".confirm").bind("click",function(){
		return confirm("Are you sure you want to delete this entry?");
	});

	$('label sup').bind("mouseover", function( event ) {
		if (this.title != "") {
			this.newtitle = this.title;
			this.title = "";
		}
		if (this.newtitle == "") return;
		$("#hintcontainer").text(this.newtitle);
		$("#hintcontainer").css({display:"block",left:event.pageX+"px", top:event.pageY+25+"px"}).fadeTo(200, 0.8);
	}).bind("mouseout", function( event ) {
		$("#hintcontainer").fadeTo(200, 0.0);
	}).bind("mousemove", function( event ) {
		$("#hintcontainer").css({left:event.pageX+"px", top:event.pageY+25+"px"});
	});

});
