﻿jQuery(document).ready(function(){
    jQuery("#link").click(function(){
        jQuery("#affiliate-content-wrapper").slideToggle("slow", callback);
        
    });
    
    function callback(){
             
         var current = jQuery("#affiliate-content-wrapper").css("display");
         if(current == "block"){
         
            jQuery("#tab").replaceWith("<img id=\"tab\" alt=\"Affiliated with St. David's HealthCare\" src=\"/Images/affiliate-tab-dark.gif\"/>");
            
            
            if (jQuery.browser.msie) {
              if(parseInt(jQuery.browser.version) == 6) {
                 jQuery("#cmsWrapper").css("background-position","center 262px");
              }
            } 
            
            
         }else{
             jQuery("#tab").replaceWith("<img id=\"tab\" alt=\"Affiliated with St. David's HealthCare\" src=\"/Images/affiliate-tab.gif\"/>");
             
             if (jQuery.browser.msie) {
              if(parseInt(jQuery.browser.version) == 6) {
                  jQuery("#cmsWrapper").css("background-position","center 0px");
              }
            } 
            
         }
            
       }

    jQuery("#close").click(function(){
        jQuery("#affiliate-content-wrapper").slideUp("slow");
        jQuery("#tab").replaceWith("<img id=\"tab\" alt=\"Affiliated with St. David's HealthCare\" src=\"/Images/affiliate-tab.gif\"/>");
        
        if (jQuery.browser.msie) {
              if(parseInt(jQuery.browser.version) == 6) {
                  jQuery("#cmsWrapper").css("background-position","center 0px");
              }
            } 
        
        
    });
    

			});