// Name: CUFON
	
	Cufon.replace('.menu li a, h1, h2, #titleSmallOrange, #titleBigBlack, #titleSmallBlack, #testimonial, #sitemap, #socialmedia, #archiefMaand, .paginationLink', {hover: true});

// --------------------------------------------------

// Name: Blur Anchors

	function blurAnchors(){
		if(document.getElementsByTagName) {
			var a = document.getElementsByTagName("a");
			//collect all anchors A
			for(var i = 0; i < a.length; i++){
				// mouse onfocus, blur anchors
				a[i].onfocus = function(){this.blur();};
			}
		}	
	}
	window.onload = blurAnchors; 
	
// --------------------------------------------------

// Name: Pikachoose


		$(document).ready(function (){
			$("#pikame").PikaChoose();
		});

			
// --------------------------------------------------

// Name: Pikachoose


	$(function() {
		$('#slider').cycle({ 
			delay:  3000, 
			speed:  1500
		});
	});


