/* ================================ +
  	  	  het beloofde land 
 + ================================ */



/* 
** Made by: Thomas Lievestro
** Email:	info@lievestro.com
** Website:	www.lievestro.com
*/


/* ================================ +
              Variables
 + ================================ */

function goTo(item){
		
	//remove active class from active navigation_item
	$('.photo_viewer_item .photo_viewer_item_img.active').removeClass('active');
	//add active class to new active navigation item
	$('#'+item+' .photo_viewer_item_img').addClass('active');
	
	$('#photo_viewer').scrollTo($('#'+item), 1000, {easing:'easeOutCirc'} );
	
}





/* parse the Jquery functions after document ready */
$(document).ready(function(){
	
	
	$(".photo_viewer_item_img")
	.click(function(){
		goTo($(this).parent().attr('id'));
		return false;
	});
	

	$(".photo_thumb")
	.click(function(){
		scrollRight($('#child2'),2);
		
		var itemId = $(this).attr('id');
		var item = itemId.split("_");
		item = 'photo_viewer_item_'+item[2];
		setTimeout(function(){
			goTo(item);
			return false;
		},800)
	});
	
	
		
});
  


