$(document).ready(function(){
	$(".jTscroller a").click(function () {
		var pagina = $(this).attr("id");
		var dataString = "";
			$.ajax({
			  type: "POST",
			  url: "/content/portfolio/"+pagina+".php",
			  data: dataString,
			  success: function(data) {
				$('#content').html(data);
					$('#slidernieuws').nivoSlider({
						effect: 'fade', // Specify sets like: 'fold,fade,sliceDown'
						directionNav: false, // Next & Prev navigation
						directionNavHide: false, // Only show on hover
						controlNav: false, // 1,2,3... navigation
						controlNavThumbs: true, // Use thumbnails for Control Nav
						controlNavThumbsFromRel: true, // Use image rel for thumbs
				 animSpeed: 300, // Slide transition speed
				  pauseTime: 2500, // How long each slide will show
					});
			  }
			});
	});
});

    $(window).load(function() {
$('#slidernieuws').nivoSlider({
        effect: 'fade', // Specify sets like: 'fold,fade,sliceDown'
        directionNav: false, // Next & Prev navigation
        directionNavHide: false, // Only show on hover
        controlNav: false, // 1,2,3... navigation
		controlNavThumbs: true, // Use thumbnails for Control Nav
        controlNavThumbsFromRel: true, // Use image rel for thumbs
				 animSpeed: 300, // Slide transition speed
				  pauseTime: 2500, // How long each slide will show
    });
    });	
