// JavaScript Document

window.onload = function()
{

	

	
	// Slideshow
	
	var menuWrapper = document.getElementById('slideshow-menu-wrapper');
	var cursor = document.getElementById('slideshow-menu-cursor');
	
	var slideshow = new Dragdealer('slideshow',
	{
		steps: 3,
		loose: true,
		speed: 5,
		animationCallback: function(x, y)
		{
			var left = x * (menuWrapper.offsetHeight - cursor.offsetHeight);
			cursor.style.left = String(left) + 'px';
		}
	});
	
	document.getElementById('slideshow-photo-1').onclick = function()
	{
		slideshow.setStep(1);
		return false;
	}
	document.getElementById('slideshow-photo-2').onclick = function()
	{
		slideshow.setStep(2);
		return false;
	}
	document.getElementById('slideshow-photo-3').onclick = function()
	{
		slideshow.setStep(3);
		return false;
	}
	
	
}

