/*
 * $Id: common.js 36 2011-09-30 07:57:42Z erik $
 */
function newWindow(mypage,myname,w,h,features) {
	if(screen.width){
		var winl = (screen.width-w)/2;
		var wint = (screen.height-h)/2;
	}
	else{winl = 0;wint =0;}
	if (winl < 0) winl = 0;
	if (wint < 0) wint = 0;

	var settings = 'height=' + h + ',';
	settings += 'width=' + w + ',';
	settings += 'top=' + wint + ',';
	settings += 'left=' + winl + ',';
	settings += features;
	win = window.open(mypage,myname,settings);
	win.window.focus();
}

var id=0;
function changeFoto()
{
	//set image paths
	src = [
	       "/images/slideshow/MtElgonCollectionPix - 189_small.jpg",
	       "/images/slideshow/MtElgonCollectionPix - 199_small.jpg",
	       "/images/slideshow/MtElgonCollectionPix - 206_small.jpg",
	       "/images/slideshow/MtElgonCollectionPix - 317_small.jpg",
	       "/images/slideshow/MtElgonCollectionPix - 350_small.jpg",
	       "/images/slideshow/MtElgonCollectionPix - 151_small.jpg",
	       "/images/slideshow/MtElgonCollectionPix - 179_small.jpg",
	       "/images/slideshow/MtElgonCollectionPix - 089_small.jpg",
	       "/images/slideshow/MtElgonCollectionPix - 166_small.jpg",
	       "/images/slideshow/MtElgonCollectionPix - 239_small.jpg",
	       "/images/slideshow/MtElgonCollectionPix - 387_small.jpg",
	];
	document.getElementById('leftImgImg').setAttribute('src', src[id]);
	setTimeout("changeFoto()", 3000);
	id++;
	if (! src[id]) {
		id = 0;
	}
}
onload = function(){changeFoto();};

// Load the lightbox
$(document).ready(
	function()
	{
		$('img').each(
			function()
			{
				if ($(this).attr('id') != "leftImgImg") {
					$(this).lightBox();
				}
			}
		);
	}
);

