

(function($) {
    if (GTZ.readCookie('navSeen') !== 'true' ) {
        
        $('a.first').delay(2500).pulse({
            count:3,
            speed : 1000,
            callback:function() {
                $('nav#nav-main li ul').fadeIn('6000');
            }
        });
        
        $('a.first').mouseover(function(){
            //alert 'Tach';
            //log('inside coolFunc', this, arguments);
            GTZ.createCookie('navSeen','true');
        });
    };
})(jQuery);

