﻿// kod för toning av bilderna :
// (C) 2000 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this  header
// NS4-6,IE4-6
// Fade effect only in IE; degrades gracefully

var DELAY = 5000;

var crossFadeDuration = 20;

var Pic = new Array(); 

	Pic[ 0]   = 'arkiv_BILDER/bilder_STARTSIDAN/projekt_Systugan_Bildspel/systugan_01.jpg';
	Pic[ 1]   = 'arkiv_BILDER/bilder_STARTSIDAN/projekt_Systugan_Bildspel/systugan_02.jpg';
	Pic[ 2]   = 'arkiv_BILDER/bilder_STARTSIDAN/projekt_Systugan_Bildspel/systugan_03.jpg';
	
	
	var t;
	var j = 0;
	var p = Pic.length;

	var preLoad = new Array();
	
	

	function VisaBilder_SYSTUGAN()
	{
		
   		if (document.all)
   		{
      		document.images.bild_Systugan.style.filter="blendTrans(duration=8)";
      		document.images.bild_Systugan.style.filter="blendTrans(duration=crossFadeDuration)";
      		document.images.bild_Systugan.filters.blendTrans.Apply();      
   		}
   
   		document.images.bild_Systugan.src = preLoad[j].src;
   
   		if (document.all)
   		{
      		document.images.bild_Systugan.filters.blendTrans.Play()
   		}
  	
		 j = j + 1;
   
   		if ( j > (p-1) ) 
   				j=0;
   				
   		   				
   		t = setTimeout('VisaBilder_SYSTUGAN()', DELAY );
		
   	}


	function starta_Bildspelet_SYSTUGAN()
	{
		
			document.images.bild_Systugan.src = 'arkiv_BILDER/bilder_STARTSIDAN/projekt_Systugan_Bildspel/systugan_01.jpg';


		for (i = 0; i < p; i++)
		{
   			preLoad[i] = new Image()
   			preLoad[i].src = Pic[i]
		}
		

		t = setTimeout('VisaBilder_SYSTUGAN()', 3000 );
   		
	}
  


