
// ---------------------------------
//					slideshow
// ---------------------------------

var time;

function slideshow(i)
{
	clearTimeout(time);
	
  for(j = 0; j < 10; j++)
  {
    $("#a_image_"+j).removeClass("selected");
  }

  $("#js_image").html(array_image[i]);
  $("#a_image_"+i).addClass("selected");
  $("#slideshow_title").html(array_title[i]);
  $("#slideshow_link").html(array_link[i]);
  $("#slideshow_text").html(array_text[i]);
  $("#slideshow_more_info").html(array_more_info[i]);
  
  var next = (i+1);
  if(array_title[next] == undefined)
  {
    next = 1;
  }
 
  time = setTimeout("slideshow("+next+")", 9000);
}
