if(document.images)
{
  var image_array = new Array();
	
  // path to the directory with images
  var path = '../resimler/button/';

  // enumeration of the "active" images
  image_array[0] = path + "bayrak_tr01.png";	
  image_array[1] = path + "bayrak_bul01.png";	
  image_array[2] = path + "bayrak_eng01.png";	
  image_array[3] = path + "bayrak_eczane02.png";	
  image_array[4] = path + "button_anasayfa02.gif";	 
  image_array[5] = path + "button_hakkimizda02.gif";	 
  image_array[6] = path + "button_urunler02.gif";	 
  image_array[7] = path + "button_eczaneler02.gif";	 
  image_array[8] = path + "button_duyurular02.gif";	 
  image_array[9] = path + "button_iletisim02.gif";	  
  image_array[10] = path + "bilgistemi02.gif";	  
  image_array[11] = path + "satisistiyorum02.gif";	
  image_array[12] = path + "urunAilesi02.gif";	  
  image_array[13] = path + "laboratuar02.gif";	  
  image_array[14] = path + "teknik02.gif";	       	
  image_array[15] = path + "gorusOku02.gif";	 
  image_array[16] = path + "bilgiIste02.gif";	
  image_array[17] = path + "gorusPaylas02.gif";	  
  image_array[18] = path + "goruspaylasim02.gif";	    
     
  var preload_image = new Array ();
 
  for(var i=0; i<image_array.length; i++)
  {
    preload_image[i]= new Image();
    preload_image[i].src = image_array[i];
  }
}

