﻿/**************************************************************************************************/
$(document).ready(function() {
    doCss();
});
/**************************************************************************************************/
function doCss() {
    /*tooltip*/
    $('.tooltip').tooltip({ delay: 0, track: true });
    if (new String($('.tooltip').attr('href')).charAt(0) == '#') {
        $('.tooltip').removeAttr('href');
    }
};