	$.fn.corner.defaults.useNative = false;
	
	$(document).ready(function() {
			
		/*** fancybox ***/
		$("a[rel=afbeeldingen]").fancybox({
			'transitionIn'		: 'none',
			'transitionOut'		: 'none',
			'titlePosition' 	: 'over',
			'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				return '<span id="fancybox-title-over">Afbeelding ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			}
		});
		
		/*** carousel homepagina ***/
		$('#mycarousel').jcarousel({
			start: 1,
			scroll:	1,
			auto: 5,
			wrap: "circular"
		});
		
    	/*** banner slideshow ***/
		$('.slideshow').cycle({
			fx: 'fade'
		});
		
		/*** rounded corners ***/
		// banner
		$("#banner").corner("top");
		
		// carousel homepagina
		$(".diensten-image").corner("top");
		
		// nieuwsblok homepagina
		$("#content-right-home").corner();
				
		// afbeeldingen detailpagina
		$(".images-detail").corner();
		
	});
