/*$(function(){
  // Document is ready
	$("a.msubscr").click(function(event){
		//$(this).after('<div id="msubscr-tip">Monthly subscription can be paid via standing order, direct debit, or PayPal subscription. This includes free updates, new versions, and support. In case DataLink UK Ltd releases a new version of its Web DataLink software all subscribers will receive it free of charge. In case Sage releases a new version all subscribers will receive free update of their Web DataLink software as well.</div>');
        $('<div id="msubscr-tip">Monthly subscription can be paid via standing order, direct debit, or PayPal subscription. This includes free updates, new versions, and support. In case DataLink UK Ltd releases a new version of its Web DataLink software all subscribers will receive it free of charge. In case Sage releases a new version all subscribers will receive free update of their Web DataLink software as well.</div>')
		.insertAfter( $(this) )
		//.fadeIn('fast')
      	.css({
	    	top: event.pageY,
	    	left: event.pageX
	  	});
     	return false;
	})
	.mouseout( function() {
		$("#msubscr-tip").animate({opacity: 1.0}, 2000).fadeOut('fast', function() { $("#msubscr-tip").remove(); });
	} );

});*/


$(function(){
  // Document is ready
	$("a.msubscr").hover(function(event){
        $('<div id="msubscr-tip">'+ $('#mon-subscr-text').html() +'</div>')
		.insertAfter( $(this) )
		//.fadeIn('fast')
      	.css({
	    	top: event.pageY,
	    	left: event.pageX
	  	});
     	return false;
	},function(){
  		$('#msubscr-tip').remove();
	})
    .click(function(){
    	return false;
	})
	;

});
