function id(id){return document.getElementById(id);}
function site(){return window.location.protocol+'//'+window.location.hostname;}


////////////////////////////////////////////////////
// photo gallery
////////////////////////////////////////////////////
pid = '1'; // photo id

function gallery(photoid,imgbig,img,gitem,alt)
{
	var galitm = id('photogallery').getElementsByTagName('div');
	
	for(i=0;i<galitm.length;i++)
	{
		galitm[i].className = 'img';
	}

	// add photo id
	pid = photoid;
	
	gitem.parentNode.className = 'img selected';

	var mainimg = id('mainfoto');
	mainimg.src = imgbig;
	mainimg.alt = mainimg.title = alt;

	var mainimglink = id('mainfotolink');
	mainimglink.href = img;
	mainimglink.alt = mainimglink.title = alt;

	return false;
}

function opengallery(photonum, photoid)
{
	if (photoid == '0')
	{
		currentphoto = id('photo'+pid).href;
		currentphotoalt = id('photo'+pid).alt;
		prevphotoid = 1;
	}
	else
	{
		currentphoto = id('photo'+photoid).href;
		currentphotoalt = id('photo'+photoid).alt;
		pid = photoid;
	}
	
	if (pid > 1)
	{
		prevphotoid = pid - 1;
		prevbutton = '<img id="prev_photo" onclick="return opengallery('+photonum+','+prevphotoid+');" src="http://www.hodinky-parizska.cz/tpl/hodinky/img/prev_photo.gif" title="" />';
	}
	else
	{
		prevbutton = '<img id="prev_photo" src="http://www.hodinky-parizska.cz/tpl/hodinky/img/empty_button.png" title="" class="empty_button" />';
		prevphotoid = prevphotoid - 1;
	}
	
	if (photonum > pid)
	{
		nextphotoid = prevphotoid + 2;
		nextbutton = '<img id="next_photo" onclick="return opengallery('+photonum+','+nextphotoid+');" src="http://www.hodinky-parizska.cz/tpl/hodinky/img/next_photo.gif" title="" />';
	}
	else
	{
		nextbutton = '<img id="next_photo" src="http://www.hodinky-parizska.cz/tpl/hodinky/img/empty_button.png" title="" />';
		nextphotoid = '';
	}

	id('bigphotospace').innerHTML = '<div id="photoshade">'+'<div id="photoframe">'+'<img src="'+currentphoto+'" alt=""  title="" onclick="return closegallery(this);" id="bigphoto">'+prevbutton+''+nextbutton+'<img src="http://www.hodinky-parizska.cz/tpl/hodinky/img/close_photo.gif" alt="" title="" id="close_photo" onclick="return closegallery(this);">'+'</div>'+'</div>';

	return false;
}

function closegallery()
{
	var mainimg = id('mainfoto');
	
	mainimg.src = currentphoto;
	
	currentphoto = currentphoto.replace(".jpg","_m.jpg");
	currentphoto = currentphoto.replace(".jpeg","_m.jpeg");
	currentphoto = currentphoto.replace(".png","_m.png");
	currentphoto = currentphoto.replace(".gif","_m.gif");
	mainimg.src = currentphoto;
	
	id('photoshade').style.display='none';
}
