document.write('\n	<script type="text/javascript" src="http://www.kajofoto.de/includes/js/jquery-1.4.1.min.js"></script>');
document.write('\n	<script type="text/javascript" src="http://www.kajofoto.de/includes/js/browser.js"></script>');

var cache = new Array();

function preloadImages(){
	var args_len = images.length;
	for (var i = args_len; i--;) {
		var cacheImage = document.createElement('img');
		cacheImage.src = images[i][0];
		cache.push(cacheImage);
	}
}

function showPrevImage(){
	if(currentImage<8){
		showImage(currentImage+1);
	}else{
		showImage(0);
	}
}

function showNextImage(){
	if(currentImage>=1){
		showImage(currentImage-1);
	}else{
		showImage(8);
	}
}

function showImage(num){
	document.getElementById("imagebox-image").src = cache[num].src;
	currentImage = num;
	var copy = "";
	var image_class;
	var image_margin;
	if((cache[num].height > cache[num].width)||(cache[num].height>400)){
		image_class="portrait";
		image_margin = ((560-cache[num].width)/2);
	}else{
		image_class="landscape";
		image_margin = 0;
	}
	document.getElementById("imagebox-image").style.marginLeft = image_margin+"px";
	document.getElementById("imagebox-image").setAttribute("class", image_class);
	if(images[8-num][1]!=""){
		copy = " - "+images[8-num][1];
	}
	document.getElementById("image_subline").innerHTML = (9-num)+" / 9"+copy;
}

function sendMail(){
	document.getElementById("sendButton").style.display = "none";
	document.getElementById("thanks").style.display = "inline";
	var email = document.getElementById("email").value;
	var mail = document.getElementById("mail").value;
	document.getElementById("emailholder").innerHTML = email;
	document.getElementById("mailholder").innerHTML = mail;
}
