// TEXT REPLACEMENT
Cufon.replace('h1', {hover: true, fontFamily: 'Calibri'});
Cufon.replace('h2, h3', {hover: true, fontFamily: 'Calibri'});	// <-- Title onder logo, subsectie
Cufon.replace('.powered', {hover: true, fontFamily: 'Calibri'});	// <-- Title onder logo, subsectie
Cufon.replace('h2.top', {hover: true, fontFamily: 'FrizQuadrata BT'});


// SLIDER (INIT + EFFECT
$(document).ready(function() {

		// Launch fotobalk!	
		init(3);
	
		// Mouse overs fotobalk!
		
		$("#fotoslider a img").css({ opacity: "0.9" });
		
		$("#fotoslider a").hover(function() {
			$(this).find("img").stop().animate({ opacity: "1" }, 200 );
			
		} , function() { 
			$(this).find("img").stop().animate({ opacity: "0.9" }, 1000 );
		});

});

//LIGHTBOX
$(function() {
	$('.fotos a').lightBox();
   $('a[rel=lightbox]').lightBox();
});
	
