  /*
   Blink image script by Andrian Ivanov
   v. 0.0.1
   This script is in construction period it's
   general idea is to develop blinking mouseover,
   with a single function. For now its avaliable
   only for manual modification by multiplying
   the functions, applying manualy the onMouseover
   and onMouseout effect in the HTML code...
   
   TODOs: 
   Create a single function to provide the effect;
   Apply effect only to a certaion class of images,
   specified in the html automatically;
   
   contact me via e-mail at:
   andrian_ivanov@abv.bg
  */
  
  
  
  /////////////////////////////////////////////////////////////////
  // Blink Image 1                                               //
  /////////////////////////////////////////////////////////////////
  
  function dofade1() {

  timerFade1 = setTimeout("dofade1()",1); 
    if(img1.filters.alpha.opacity > 60) {
      img1.filters.alpha.opacity = img1.filters.alpha.opacity - 20;
    } else {
      img1.filters.alpha.opacity = img1.filters.alpha.opacity + 10;
    }
  }
  
  function defade1() {
  clearTimeout(timerFade1);  
  timerUnfade1 = setTimeout("defade1()",1);
    if(img1.filters.alpha.opacity < 100) {
      img1.filters.alpha.opacity = img1.filters.alpha.opacity + 10;
    } else {
      clearTimeout(timerUnfade1);
    }
  }
  
  /////////////////////////////////////////////////////////////////
  // Blink Image 2                                               //
  /////////////////////////////////////////////////////////////////
  
  
  function dofade2() {

  timerFade2 = setTimeout("dofade2()",1); 
    if(img2.filters.alpha.opacity > 60) {
      img2.filters.alpha.opacity = img2.filters.alpha.opacity - 20;
    } else {
      img2.filters.alpha.opacity = img2.filters.alpha.opacity + 10;
    }
  }
  
  function defade2() {
  clearTimeout(timerFade2);  
  timerUnfade2 = setTimeout("defade2()",1);
    if(img2.filters.alpha.opacity < 100) {
      img2.filters.alpha.opacity = img2.filters.alpha.opacity + 10;
    } else {
      clearTimeout(timerUnfade2);
      
    }
  }
  
  /////////////////////////////////////////////////////////////////
  // Blink Image 3                                               //
  /////////////////////////////////////////////////////////////////
  
  function dofade3() {

  timerFade3 = setTimeout("dofade3()",1); 
    if(img3.filters.alpha.opacity > 60) {
      img3.filters.alpha.opacity = img3.filters.alpha.opacity - 20;
    } else {
      img3.filters.alpha.opacity = img3.filters.alpha.opacity + 10;
    }
  }
  
  function defade3() {
  clearTimeout(timerFade3);  
  timerUnfade3 = setTimeout("defade3()",1);
    if(img3.filters.alpha.opacity < 100) {
      img3.filters.alpha.opacity = img3.filters.alpha.opacity + 10;
    } else {
      clearTimeout(timerUnfade3);
      
    }
  }
  
  /////////////////////////////////////////////////////////////////
  // Blink Image 4                                               //
  /////////////////////////////////////////////////////////////////  
  
  function dofade4() {

  timerFade4 = setTimeout("dofade4()",1); 
    if(img4.filters.alpha.opacity > 60) {
      img4.filters.alpha.opacity = img4.filters.alpha.opacity - 20;
    } else {
      img4.filters.alpha.opacity = img4.filters.alpha.opacity + 10;
    }
  }
  
  function defade4() {
  clearTimeout(timerFade4);  
  timerUnfade4 = setTimeout("defade4()",1);
    if(img4.filters.alpha.opacity < 100) {
      img4.filters.alpha.opacity = img4.filters.alpha.opacity + 10;
    } else {
      clearTimeout(timerUnfade4);
    }
  }
  
/////////////////////////////////////////////////////////////////
  // Blink Image 5                                               //
  /////////////////////////////////////////////////////////////////  
  
  function dofade5() {

  timerFade5 = setTimeout("dofade5()",1); 
    if(img5.filters.alpha.opacity > 60) {
      img5.filters.alpha.opacity = img5.filters.alpha.opacity - 20;
    } else {
      img5.filters.alpha.opacity = img5.filters.alpha.opacity + 10;
    }
  }
  
  function defade5() {
  clearTimeout(timerFade5);  
  timerUnfade5 = setTimeout("defade5()",1);
    if(img5.filters.alpha.opacity < 100) {
      img5.filters.alpha.opacity = img5.filters.alpha.opacity + 10;
    } else {
      clearTimeout(timerUnfade5);
    }
  }
  
/////////////////////////////////////////////////////////////////
  // Blink Image 6                                               //
  /////////////////////////////////////////////////////////////////  
  
  function dofade6() {

  timerFade6 = setTimeout("dofade6()",1); 
    if(img6.filters.alpha.opacity > 60) {
      img6.filters.alpha.opacity = img6.filters.alpha.opacity - 20;
    } else {
      img6.filters.alpha.opacity = img6.filters.alpha.opacity + 10;
    }
  }
  
  function defade6() {
  clearTimeout(timerFade6);  
  timerUnfade6 = setTimeout("defade6()",1);
    if(img6.filters.alpha.opacity < 100) {
      img6.filters.alpha.opacity = img6.filters.alpha.opacity + 10;
    } else {
      clearTimeout(timerUnfade6);
    }
  }