/*
 * Utility functions for Copeland Services' website.
 * Copyright Copeland Computer Consulting, unless otherwise
 * specified.
 */


/* Create our transition function for the menu system -- IE only
 * Thanks SSI Developer site for this tip!  This code snippet
 * is assumed to be copyright by SSI Developer website.
 * Only formatting changes, for readability, have been applied.
 */
function trans( obj ) {
  if( document.all && !window.opera ) {
    obj.filters.blendTrans.apply() ;
    obj.filters.blendTrans.play() ;
  }
}


// --- end of file ---
