initModal = function() {
	$('.portfolioItem a, a.lightbox, .brand a').colorbox({
		title:'',
		//height: '480px',
		//current:"Referentie {current} van {total}",
		maxWidth: '1000px',
		current: "",
		previous: "<span></span>Vorige project",
		next: "Volgende project<span></span>",
		onComplete: function(){
	//console.log("onComplete 198");
			initBannerSlideshow();
			Cufon.replace("h1");
		},
		onLoad: function(){
	//console.log("onLoad 198");
			$('.contentBanner .slides').each(function(){
				$navId = '#' + $(this).attr('id') + 'Nav';
				$(this).cycle('destroy');
			});
		},
		onCleanup: function(){
	//console.log("onCleanup 198");
			$('.contentBanner .slides').each(function(){
	//console.log($(this));
				$navId = '#' + $(this).attr('id') + 'Nav';
				$(this).cycle('destroy');
			});
		}
	});
}

function initBannerSlideshow() {
	$('.contentBanner .slides').each(function(){
		$navId = '#' + $(this).attr('id') + 'Nav';
		$(this).cycle({
			fx: 'fade',
			timeout: 3000,
			pager: $navId
		});
	});
}
