$(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');
	
	var nth = 4;
	$('.producten').children('a').each(function(index) {
		if (index % nth === 0) {
			$('<div></div>').appendTo('.producten');
		}
		$('.producten').children('div:last').append(this);
	});
	
	
	$('.cycle').cycle({ 
		fx:    'fade', 
		speed:  800, 
		timeout: 5000, 
		random: true
	});
	
	$('ul.thumbs a').click(function(event) {
		var href = $(this).attr("href");
		$("#big").attr("src", href);
		event.preventDefault();
	});

	
});
