// *** PAGE SPECIFIC VARIABLES *** //

// *** PAGE SPECIFIC FUNCTIONS *** //

// init function called after page has loaded
function init()
{
    // initialize google analytics variables
    pageTracker = _gat._getTracker(googleAnalyticsAccountNumber);
    pageTracker._initData();
    
    // get adCode from url
    var myAdCode = getURLParamValue("a");
    if (myAdCode != null) adCode = myAdCode;
    
    pageId = "13";
    pageEventId = "0";
    trackerUpdate(pageId, pageEventId);
}

// *** USE JQUERY TO START THE INIT() FUNCTION AFTER THE PAGE LOADS COMPLETELY *** //

jQuery(document).ready(function() {
    init();
});