﻿/// <reference path="../../js/TrackItem.js" />
function GetCollection() {
    var collection = new Array();

    collection["-1"] = new TrackItem('home', 'default_page_home', 'default_page_gaia_logo');
    collection["0"] = new TrackItem('home', 'default_page_home', 'default_page_home_link_side_nav');    
    collection["1"] = new TrackItem('free_trial', 'default_page_free_trial', 'default_page_free_trial_link_side_nav');
    collection["2"] = new TrackItem('buy', 'default_page_buy', 'default_page_buy_link_side_nav');
    collection["3"] = new TrackItem('product_info', 'default_page_product_info', 'default_page_product_link_side_nav');
    collection["4"] = new TrackItem('About_us', 'default_page_about_us', 'default_page_about_us_link_side_nav');
    collection["5"] = new TrackItem('support', 'default_page_support', 'default_page_support_link_side_nav');
    collection["6"] = new TrackItem('blog', 'default_page_blog', 'default_page_blog_link_side_nav');
    collection["7"] = new TrackItem('home', 'default_page_home', 'default_page_home_link_bottom_nav');
    collection["8"] = new TrackItem('free_trial', 'default_page_free_trial', 'default_page_free_trial_link_bottom_nav');
    collection["9"] = new TrackItem('buy', 'default_page_buy', 'default_page_buy_link_bottom_nav');
    collection["10"] = new TrackItem('product_info', 'default_page_product_info', 'default_page_product_link_bottom_nav');
    collection["11"] = new TrackItem('About_us', 'default_page_about_us', 'default_page_about_us_link_bottom_nav');
    collection["12"] = new TrackItem('support', 'default_page_support', 'default_page_support_link_bottom_nav');
    collection["13"] = new TrackItem('blog', 'default_page_blog', 'default_page_blog_link_bottom_nav');
    collection["14"] = new TrackItem('privacy', 'default_page_privacy', 'default_page_privacy_link_bottom_nav');
    collection["15"] = new TrackItem('blog', 'default_page_blog', 'default_page_blog_icon_bottom_right');

    collection["16"] = new TrackItem('product_info', 'default_product_info', 'default_product_info_button');
    collection["17"] = new TrackItem('support', 'default_support', 'default_get_support_button');
    collection["18"] = new TrackItem('buy', 'default_buy', 'default_buy_now_button');
    collection["19"] = new TrackItem('free_trial', 'default_free_trial', 'default_red_free_trial_button');
    collection["20"] = new TrackItem('blog', 'default_blog', 'default_blog_link_in_text_body');
    collection["21"] = new TrackItem('free_trial', 'default_free_trial', 'default_try_link_in_text_body');


    return collection;
}
//        Gaia logo tag: _trackEvent(home, default_home, default_gaia_logo)
//        "home” link in side nav tag: _trackEvent(home, default_home, default_home_link_side_nav)
//        "free trial” link in side nav tag: _trackEvent(free_trial, default_free_trial, default_free_trial_link_side_nav)
//        "buy” link in side nav tag: _trackEvent(buy, default_buy, default_buy_link_side_nav)
//        "product” link in side nav tag: _trackEvent(product_info, default_product_info, default_product_link_side_nav)
//        "about us” link in side nav tag: _trackEvent(About_us, default_about_us, default_about_us_link_side_nav)
//        "support” link in side nav tag: _trackEvent(support, default_support, default_support_link_side_nav)
//        "Blog” link in side nav tag: _trackEvent(blog, default_blog, default_blog_link_side_nav)
//        "home” link in bottom nav tag: _trackEvent(home, default_home, default_home_link_bottom_nav)
//        "free trial” link in bottom nav tag: _trackEvent(free_trial, default_free_trial, default_free_trial_link_bottom_nav)
//        "buy” link in bottom nav tag: _trackEvent(buy, default_buy, default_buy_link_bottom_nav)
//        "product” link in bottom nav tag: _trackEvent(product_info, default_product_info, default_product_link_bottom_nav)
//        "about us” link in bottom nav tag: _trackEvent(About_us, default_about_us, default_about_us_link_bottom_nav)
//        "support” link in bottom nav tag: _trackEvent(support, default_support, default_support_link_bottom_nav)
//        "Blog” link in bottom nav tag: _trackEvent(blog, default_blog, default_blog_link_bottom_nav)
//        "Privacy Policy” link in bottom nav tag: _trackEvent(privacy, default_privacy, default_privacy_link_bottom_nav)
//        "Blog” icon bottom right tag: _trackEvent(blog, default_blog, default_blog_icon_bottom_right)

//        green "product info” button tag: _trackEvent(product_info, default_product_info, default_product_info_button) 
//        green "get support” button tag: _trackEvent(support, default_support, default_get_support_button)
//        green "buy now” button tag: _trackEvent(buy, default_buy, default_buy_now_button)
//        red "14-day free trial” button tag: _trackEvent(free_trial, default_free_trial, default_red_free_trial_button)
//        "Blog” link imbedded in text tag: _trackEvent(blog, default_blog, default_blog_link_in_text_body)
//        Red "Try now” link imbedded in body tag: _trackEvent(free_trial, default_free_trial, default_try_link_in_text_body)








