$(function() {

    if ( typeof(rhino_account_id) == 'undefined' )
        return false;

    if ( rhino_account_id == '' )
        return false;

    $.getJSON('http://apps.autofast.ca/rhinostats/rhinostats.php?'+
              '&account_id=' + rhino_account_id + 
              '&href=' + encodeURIComponent(location.href) +
              '&referer='+ encodeURIComponent(document.referrer)+
              '&browser_width='+$(window).width() +
              '&browser_height='+$(window).height() +
              '&screen_width='+screen.width +
              '&screen_height='+screen.height +
              '&title='+ encodeURIComponent(document.title) +
              '&platform='+ encodeURIComponent(navigator.platform) +
              '&callback=?', function(data) { });

});

