// Name: CUFON
	
	Cufon.replace('.title, .menu li a, h1, h2, .priceLarge, .column span, th, .caravanNaam, .lineBlocktxt, .btnbig, .ebtnbig, .tel, .bj, .prijs, .btn, .pagination, .pagination2', {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: Slider

	$(function() {
                $('#slideshow1 img').each(function(){
                    
                   if($(this).attr("src") == "http://zwembaddeplons.nl/template/images/spacer.png"){
                       $(this).remove();
                   } 
                });
            
            
            
            
		$('#slideshow1').cycle()
	});
