function Premium_Init()
{
    $('div.ImportantMessage').each(function() {
        if ($(this).is('.pr'))
           return;
        var content = '';
        if ($(this).is('.Notes'))
            content += '<img src="/Portals/0/Icons/Notes.png" class="icon" />';
        else if ($(this).is('.Error'))
            content += '<img src="/Portals/0/Icons/Error.png" class="icon" />';
        else if ($(this).is('.Warning'))
            content += '<img src="/Portals/0/Icons/Warning.png" class="icon" />';
        content += '<div class="content">' + $(this).html() + '</div>';
        $(this).html(content);
        $(this).addClass('pr');
    });

    $('input.tips').cluetip({ splitTitle: '|', showTitle: false, activation: 'focus', arrows: true, dropShadow: false, cluetipClass: 'jtip' });
    $('select.tips').cluetip({ splitTitle: '|', showTitle: false, activation: 'focus', arrows: true, dropShadow: false, cluetipClass: 'jtip' });
}


