$(window).load(function() {
	$('.portfolio-naj').cycle({
		pager: '.portfolio-naj-pager',
		pagerAnchorBuilder: function(idx, slide) {
			return '<a href="#" style="background-image: url(' + $(slide).find('img').attr('src') + ');"></a>';
		}
	});
	
	$('.thumbs').each(function() {
		var x = $(this).parent().attr('id');
		var prev = '#' + x + '-prev';
		var next = '#' + x + '-next';

		$(this).cycle({
			fx: 'scrollHorz',
			prev: prev,
			next: next,
			timeout: 0
		});
	});

});


