


$(document).ready(function() 
{
    if ($.cookie('9ebc'))
    {
        // do nothing
    }
    else
    {
        $.cookie(
            '9ebc',
            'c991',
            { 
                expires: 600,
                path: '/blog/'
            }
            );
    }
});
