var SLIDE_path = 'haberResim/'; // Path to the folder, where the images are put.
var SLIDE_text = new Array();
var SLIDE_pic = new Array();
var SLIDE_yol = new Array();
SLIDE_actual = '1';
SLIDE_count = '2';
SLIDE_text[1]  = 'GAB 02 ve ISO 20252 Geçiş Süreci '; // Text to Image 1
SLIDE_pic[1]  = '16.jpg'; // Text to Image 1
SLIDE_yol[1]  = '../haberler/gab01gab02.aspx'; // Yol to Image 1
SLIDE_text[2]  = 'OTiSTiK ÇOCUKLAR YARDIMLARINIZI BEKLiYOR'; // Text to Image 2
SLIDE_pic[2]  = '33.jpg'; // Text to Image 2
SLIDE_yol[2]  = '../haberler/otistikcocuklar.aspx'; // Yol to Image 2
function SLIDE_start()
{
   document.getElementById("SLIDE_picBox").src = SLIDE_path + SLIDE_pic[SLIDE_actual]; 
   document.getElementById("SLIDE_textBox").innerHTML= SLIDE_text[SLIDE_actual];
   document.getElementById("ahref").href= SLIDE_yol[SLIDE_actual];
} 
function geriGit()
{ 
 seconds=5;saniye=5; SLIDE_actual--;
  SLIDE_slide();
} 
function ileriGit()
{ 
  seconds=5;saniye=5;SLIDE_actual++;
  SLIDE_slide()
}
function SLIDE_slide()
{ 
  if (SLIDE_actual > (SLIDE_count)) SLIDE_actual=1;
  if (SLIDE_actual < 1) SLIDE_actual = SLIDE_count;
     document.getElementById("SLIDE_picBox").src = SLIDE_path+ SLIDE_pic[SLIDE_actual] ; 
     document.getElementById("SLIDE_textBox").innerHTML= SLIDE_text[SLIDE_actual];
     document.getElementById("ahref").href= SLIDE_yol[SLIDE_actual];
 }
