$(document).ready( function() {
    // test whether cookies are enabled
    $.cookie("vtTestCookie", "abc123xyz");
    if ( $.cookie("vtTestCookie") === "abc123xyz" ) {
        $.cookie("vtTestCookie", null);
        $.post("/visitors/track.php", { 'token' : '9931157F2B5' });
    } 
});

