

/*                                                                        
                _____      _____    _____________       _____________       
              /     /    /     /  /     _____     \   /     _____     \     
             /     /____/     /  /     /    /_____/  /     /____/     /     
            /      ____      /  /     /             /     _____      /      
           /     /    /     /  /     /    ______   /     /    /     /       
          /     /    /     /  /      \___/     /  /     /    /     /        
         /_____/    /_____/   \_______________/  /_____/    /_____/         
         East Florida IT&S                                                 

      *** *** *** *** *** *** *** *** **** *** *** *** *** *** *** *** ***  
     ***                Project: DASI Header Promo                      ***  
     ***         DO NOT EDIT THIS FILE UNDER ANY CIRCUMSTANCE           ***  
      *** *** *** *** *** *** *** *** **** *** *** *** *** *** *** *** ***  
    
      Department: East Florida IT&S
         Version: 1.0
          Author: Wei-Lik Liem
           Email: weilik.liem@hcahealthcare.com
            Date: 11/22/11
*/

$(document).ready(function(){
  function setUpPromo(){
     var DASIPromo = '<DIV class="DASIPromo"><A href="http://www.iheartmyheart.com/" target="_new"><IMG SRC="/design/images/base_v2.0r1/promo/valveInstitute.png" width="244" height="60"></a><DIV class="DASIPromoCopyA">Are you heart healthy? &nbsp; &nbsp; &nbsp; &nbsp;</DIV><DIV class="DASIPromoCopyB">Take the QUIZ find out! &nbsp; &nbsp; &nbsp; &nbsp;</DIV><DIV>';
     $('.ehc-er-wait-wrap').append(DASIPromo);
     $('.DASIPromoCopyA, .DASIPromoCopyB, .DASIPromo').hide();
     setTimeout(aniPromo, '3000');
  }
  function aniPromo(){
     $('.ehc-er-wait').stop(true, true).fadeToggle('slow');
     $('.DASIPromoCopyA, .DASIPromoCopyB').stop(true, true).hide();
     $('.DASIPromo').stop(true, true).fadeToggle('slow', function() {
        $('.DASIPromoCopyA').stop(true, true).slideToggle(function() {
           $('.DASIPromoCopyA').delay(4000).fadeToggle('fast', function() {
              $('.DASIPromoCopyB').slideToggle('fast', function() {
                setTimeout(aniPromo, 6000);
              });
            });
        });
     });
  }
  $('head').append('<LINK rel="stylesheet" type="text/css" href="http://jfkmc.com/DASI/_/css/DASIPromo.css">');
  setUpPromo();
});

