<!--
 var featureURLs = [
  ['http://www.hadith.ac.ir/files/farsi/images/virtual_Univercity_Start2.jpg','http://www.hadith.ac.ir/files/farsi/images/talar10.jpg','http://www.hadith.ac.ir/files/farsi/images/liblary03.jpg','http://www.hadith.ac.ir/files/farsi/images/liblary02.jpg','http://www.hadith.ac.ir/files/farsi/images/labratoary03.jpg','http://www.hadith.ac.ir/files/farsi/images/information-service01.jpg','http://www.hadith.ac.ir/files/farsi/images/class10.jpg','http://www.hadith.ac.ir/files/farsi/images/hadith-college05.jpg','http://www.hadith.ac.ir/files/farsi/images/hadith-college07.jpg','http://www.hadith.ac.ir/files/farsi/images/hamayesh.jpg'],

  ];
 var photoToChange = 0;
 var position = 0;

 function OnWSTimer()
 {
  position = position+1;
  if (position >= featureURLs[0].length)
   position -= featureURLs[0].length;
   
  photoToChange = photoToChange+1;
  if (photoToChange > 1)
   photoToChange =1;
   
   var photoElement;
   if (document.getElementById)
    photoElement = document.getElementById("feature" + photoToChange);
   else
    photoElement = eval("document.all.feature" + photoToChange);
   hasFilter = photoElement && photoElement.filters && photoElement.filters[0];
   if (hasFilter)
    photoElement.filters[0].apply();
  
   photoElement.src=featureURLs[photoToChange - 1][position];
  
   if (hasFilter)
    photoElement.filters[0].play();
  
  setTimeout("OnWSTimer()", 8000);
 }
 setTimeout("OnWSTimer()", 8000);
-->
