﻿
var $abf = jQuery.noConflict();
$abf(document).ready(function () {
    init();    
});

//////////////////////////////////////////////////////////////////
// Initialization routine that gets called when page is loaded. //
//////////////////////////////////////////////////////////////////
function init() {

    try {
        
        if (typeof initializeFloatingCart == "function") {

            // Init the floating cart if found.
            initializeFloatingCart();

        } else if (typeof initializeLandingCart == "function") {
                       
            // Else, init the landing page cart if found.
            initializeLandingCart();
        }

    } catch (e) {
        //alert("An error occurred installing the floating cart functionality.  Process cancelled: " + e);
    }

}
