var text = '';
function hideTip_sz(obj) {
obj.attr('title', text);
$('#tooltip2').css('display', 'none');
}
var toolTipOver_sz = false;
function showTip_sz(obj, e) {
$('#tooltip2').css('display', 'block');
text = obj.attr('alt');
if( text.length == 0 ) return;
obj.attr('title', '');
$('#tooltip2content').html(text);
$('#tooltip2').css('display', 'block');


$('#tooltip2').removeClass();
var tt = $(obj).attr('data-tt');
if( tt != undefined )
{
$('#tooltip2').addClass(tt);
}

$('#tooltip2').css('left', e.pageX - $('#tooltip2').get(0).offsetWidth + 3 + $('#tooltip2').width() + 'px');
$('#tooltip2').css('top', e.pageY - $('#tooltip2').get(0).offsetHeight - 3 + 'px');

}

$('.tt_rollover').hover(function(e) {
var handle = $(this);
$(this).css('cursor', 'pointer');
showTip_sz(handle, e);
}, function() {
hideTip_sz($(this));
});