$(document).ready(function(){
						   
	$('.fancybox').fancybox({ 'titlePosition': 'inside' }); 
	
	$('a[href^="http://"]').attr("target", "_blank");
	$('.blank').attr('target','_blank');
	
	$("ul li:first-child").addClass('first');
	$("ul li:last-child").addClass('last');
	
	// CLICK THUMB SCHILDERIJ
	$('#gallery_bar a').click(function(){
									
		// active thumb
		$("#gallery_bar a").each(function(i){
			$(this).removeClass("active");
		});
		$(this).addClass("active");
		
		// ajax: load content
		var href = $(this).attr("href");
		$("#main").load(href + " #main div");
		return false;
	});
	$('#gallery_bar a').mouseover(function(){ $(this).trigger('click'); });
	
	
	
	// CLICK THUMB PIJLTJES
	$('.navigate_gallery a.up').click(function(){				   
		$("#gallery_bar a.active").prev().trigger('click');
		return false;
	});
	$('.navigate_gallery a.down').click(function(){				   
		$("#gallery_bar a.active").next().trigger('click');
		return false;
	});
	// OOK VOLGENDE FOTO ALS JE OP FOTO ZELF KLIKT
	$('#mainfoto').live('click', function() {
		$("#gallery_bar a.active").next().trigger('click');
		return false;
	});
									

	
	/*
	
	$("ul li:nth-child(odd)").addClass('odd');
	$("ul li:nth-child(even)").addClass('even');	
	
	$('.cycle').cycle({ 
		fx:    'fade', 
		speed:  500, 
		timeout: 5000, 
		pager:  '.slider-nav',
		pagerEvent: 'mouseover',
		pauseOnPagerHover: true
	});
*/
	
});
