/**
 * @author nielsdequeker
 */
$(document).ready(function (){
	// lightbox
	$('#lightbox a').click(function(){
		$('#lightbox a').fadeOut(1000, null, function (){
			$('#lightbox').hide('slow');
			window.location = $(this).attr('href');
		});
		
		return false;
	});
	
	// add images to slideshow
	$('#slideshow').append('<img src="images/slideshow/boomstammen.jpg" alt="Zwartwit" title="Zwartwit" /><img src="images/slideshow/boomstronken.jpg" alt="Boomstronken" title="Boomstronken" /><img src="images/slideshow/without.jpg" alt="Wit hout" title="Wit hout" />');
	
	// slideshow
	$('#slideshow').innerfade({
		speed: 1000,
		timeout: 8500,
		type: 'sequence',
		containerheight: '220px'
	});
	
	var arrImages = new Array();
	$('#miniSlideshow .itemContent img').each(function (){
		arrImages.push({'src': $(this).attr('src'), 'dir': 'left'});
	});
	
	if (arrImages.length > 1)
	{
		$('#miniSlideshow .itemContent').crossSlide({
		  speed: 14,
		  fade: .001
		}, arrImages);
	}
	
	//Galleria.addTheme('js/galleria.classic.js');
	//Galleria.loadTheme('js/galleria.classic.js');
	// photoalbum
    $('#photoalbum').galleria({
        height:400,
		show_info:false,
		show_imagenav:false,
		show_counter: false,
		image_crop:true
    });
	
	
	//Galleria.loadTheme('js/galleria.classic.js');
	$('#photoalbumBig').galleria({
        height:600,
		show_info:false,
		show_imagenav:false,
		show_counter: false,
		image_crop:true
    });
});
