$(function() {
  $('.clsNoLocation').slideDown('fast', function() {
    $('.clsPanelIndicator').addClass('clsPanelIndicatorOpen');
    $('.clsNoLocation').tooltip({
      position: 'center right',
      offset: [14, 10],
      api: true,
      effect: 'fade',
      tipClass: 'tooltipAlert'
    }).show();
  });
  $('.clsLocationTrigger').click(function(){
    $('#idLocationsPanel').slideToggle('fast', function(){
      if ( $(this).is(':visible') ) {
        $('.clsPanelIndicator').addClass('clsPanelIndicatorOpen');
      }
      if ( $(this).is(':hidden') ) {
        $('.clsPanelIndicator').removeClass('clsPanelIndicatorOpen');
      }
    });
  });
});
