 j = jQuery.noConflict();
    j(document).ready(function(){
        setTimeout('showMeerkat()', 3000);
    });

    var showMeerkat = function()
    {
        j('#darwinUpgrade').meerkat({
            background: '#ffffff url(https://www.vacmedia.co.uk/imgfoot/catfish_bg.gif) 0 0 repeat-x',
            height: '100px',
            width: '100%',
            position: 'bottom',
            close: '.close-meerkat',
            dontShowAgain: '.dont-show',
            animationIn: 'slide',
            animationSpeed: '600'
        });
    }

