rightClickWarning = "Please purchase the photo for your keepsake. Your support by purchasing this photo will help us cover expenses to cover your team. This photo is copyright protected by ckysports.com";  
/*===================================*/
/*== SM Bay Photo Help Page Script ==*/
/*===================================*/

            var t = {"Bprints":0,"Merchandise":1,"Downloads":2,"More":3,"Help":4},
        activeIndex = t[location.hash.split("#")[1]] || 0;

    var handleTabChange = function(ev) {
        var id = ev.newValue.get('element').id,
            activeIndex = this.get('activeIndex');
            
        if (t.Bprints >= 0 && activeIndex === 0) {
            //if we have a bay tab, it will always be at index 0
            YD.get('catSmall').innerHTML = 'Bay Photo'; 
        } else if (/tab_cat_(prints|merchandise)$/.test(id)) {
            //no bay tab, prints and merch are ezp
            YD.get('catSmall').innerHTML = 'EZ Prints'; 
        } else {
            YD.get('catSmall').innerHTML = ''; 
        }
    };

    YE.onDOMReady(function() {
        var catTabs = new YAHOO.widget.TabView('cat_tabs');

        catTabs.addListener('activeTabChange', handleTabChange);
        catTabs.set('activeIndex', activeIndex);
    });
