function initUpcoming(){
     jQuery('#locationsTabs').find('li.locationTab:first').addClass('active');
        jQuery('#locationsTabs').find('li.locationTab').not('.active').each(function(i, currElem) {
            var locationId = jQuery(currElem).attr('id').split("_")[1];
            jQuery('#upcommingPrsnt_' + locationId).parents('div:first').hide();
        });
        jQuery('#locationsTabs').find('li.locationTab').bind('click', function() {
            if (jQuery(this).hasClass('active')) {
                return true;
            }
            var locationId = jQuery('#locationsTabs').find('li.locationTab.active').removeClass('active').attr('id').split("_")[1];
            jQuery('#locationsTabs').find('li.locationTab.active').removeClass('active');
            jQuery('#upcommingPrsnt_' + locationId).parents('div:first').hide();
            locationId = jQuery(this).addClass('active').attr('id').split("_")[1];
            jQuery('#upcommingPrsnt_' + locationId).parents('div:first').show();
            if (!jQuery('#upcommingPrsnt').hasClass('scroll')) {
                if (!jQuery('#upcommingPrsnt_' + locationId).parents('div:first').hasClass('vTicker')) {
                    var items = Math.floor(($('#upcommingPrsnt').height()) / 12);
                    jQuery('#upcommingPrsnt_' + locationId).parents('div:first').vTicker({
                        speed: 500,
                        pause: 3000,
                        showItems: items,
                        animation: 'fade',
                        mousePause: true}).addClass('vTicker');
                }
            }
        });
        jQuery('div#upcommingPrsnt').find('li').hover(function() {
            $(this).addClass('hover');
        }, function() {
            $(this).removeClass('hover');
        });
    if (!jQuery('#upcommingPrsnt').hasClass('scroll') || isMobile) {
        var items = Math.floor(($('#upcommingPrsnt').height()) / 12);
        jQuery('div#upcommingPrsnt').find('ul.upcommingPrsnt').each(function(i,currUL){
        $(currUL).parents('div:first').vTicker({
            speed: 500,
            pause: 3000,
            showItems: items,
            animation: 'fade',
            mousePause: true}).addClass('vTicker');
        });
    }
}
