//
(C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 3000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 4;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Caption[1]='Ja esi izlēmi palīdzēt, nedari to viens, ņem līdzi arī draugus!';
Picture[1]='slideshow/_mg_4969.jpg';
		//sort=a
Caption[2]='Reģistratūrā uzrādi personu apliecinošu dokumentu ar fotogrāfiju';
Picture[2]='slideshow/_mg_4970.jpg';
		//sort=b
Caption[3]='Aizpildi reģistrācijas anketu. 
Atbildi uz jautājumiem godīgi, jo no tā var būt atkarīga otra cilvēka veselība vai pat dzīvība'; Picture[3]='slideshow/_mg_4995.jpg'; //sort=c Caption[4]='Laboratorijā Tev noteiks asins grupu un Rēzus piederību'; Picture[4]='slideshow/_mg_5023.jpg'; //sort=d Caption[5]='Tiks noskaidrots hemoglobīna līmenis asinīs'; Picture[5]='slideshow/_mg_5042.jpg'; //sort=e Caption[6]='Konsultējies ar ārstu un uzdod jautājumus par savu veselības stāvokli un gaidāmo procedūru'; Picture[6]='slideshow/_mg_5063.jpg'; //sort=f Caption[7]='Pirms asins ziedošanas ieteicams lietot daudz šķidruma un ieturēt vieglu maltīti'; Picture[7]='slideshow/_mg_5004.jpg'; //sort=g Caption[8]='Asins ziedošana ilgst aptuveni 6-10 minūtes'; Picture[8]='slideshow/_mg_5081.jpg'; //sort=h Caption[9]='Vienā asins ziedošanas reizē Tu ziedosi 450 ml. аsiņu un, ja esi vesels, tas nav kaitīgi tavai veselībai'; Picture[9]='slideshow/_mg_5104.jpg'; //sort=i Caption[10]='Analīzēm tiks noņemti 45 ml asiņu'; Picture[10]='slideshow/_mg_3095.jpg'; //sort=j Caption[11]='Pēc asins ziedošanas ieteicama atpūta, tāpēc izmanto LR Darba likumā donoram paredzētās brīvās dienas.'; Picture[11]='slideshow/_mg_5086.jpg'; //sort=k //Picture[17] = 'slideshow/IMG_19.jpg'; // Specify the Captions... // To add more captions, just continue // the pattern, adding to the array below. // To use fewer captions, remove lines // starting at the end of the Caption array. // Caution: The number of Captions *must* // equal the number of Pictures! //Caption[17] = ""; // ===================================== // Do not edit anything below this line! // ===================================== var tss; var iss; var jss = 1; var pss = Picture.length-1; var preLoad = new Array(); for (iss = 1; iss < pss+1; iss++){ preLoad[iss] = new Image(); preLoad[iss].src = Picture[iss];} function runSlideShow(){ if (document.all){ document.images.PictureBox.style.filter="blendTrans(duration=2)"; document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)"; document.images.PictureBox.filters.blendTrans.Apply();} document.images.PictureBox.src = preLoad[jss].src; if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss]; if (document.all) document.images.PictureBox.filters.blendTrans.Play(); jss = jss + 1; if (jss > (pss)) jss=1; tss = setTimeout('runSlideShow()', SlideShowSpeed); } runSlideShow();