$(function() {

$(".nolink").click(function(){
return false;
})

$('.calTip').mouseover(function(){
var tip = $(this).attr('alt');
$(this).removeAttr( 'title' );
$(this).after('<div id="tip" style="border: 1px solid ; text-align:left; padding: 5px; position: absolute; display: inline; z-index: 99999; background-color: rgb(204, 204, 204);">'+tip+'</div>');
}).mouseout(function(){
$("#tip").remove();

});


});
