            /** DO NOT EDIT THIS FILE, THIS FILE IS AUTOMATICALLY CREATED **/
              
              
              
            /** IF YOU MAKE CHANGES TO THIS FILE, THEY WILL BE DELETED!   **/
            
            if(navigator.userAgent.match(/Macintosh/) && navigator.userAgent.match(/Safari|Camino/))
            {
              fix_css_images = function() 
              {            
                var inputs = document.getElementsByTagName('input');
                for(var x = 0; x < inputs.length; x++)
                {
                  if(inputs[x].className.match(/css-button-(login-and-continue|update-totals|checkout|continue-shopping|create-account|add-to-cart|continue|login)/))
                  {          
                    inputs[x].type  = 'image';
                    inputs[x].src   = css_images[RegExp.$1].url;                    
                    inputs[x].url   = css_images[RegExp.$1].url;
                    inputs[x].h_url = css_images[RegExp.$1].h_url; 
                    inputs[x].h_img = document.createElement('img');
                    inputs[x].h_img.src = css_images[RegExp.$1].h_url;
                    inputs[x].onmouseover = function() { this.src = this.h_url; }
                    inputs[x].onmouseout  = function() { this.src = this.url; }          
                    inputs[x].className = inputs[x].className.replace(/css-button-[a-z0-9-]+/, '');
                  }
                }
              }        
            }
            
