jQuery(document).ready(
  (function($) { 

  	Cufon.now();
    var logo = $('#logo').children().not('p');
	Cufon.set('fontFamily', 'contour').replace(logo).replace('#linkstext');
	$('#slider').cycle({fx: 'scrollHorz',easing: 'easeOutCubic', cleartypeNoBg: true, cleartype:1, timeout: 5000, next: '#slider-button-r', prev: '#slider-button-l', pause: true  });
	
	
	$('#contact-button').mousedown(function(){
		$(this).css('background-position','0 -118px');
	}).mouseover(function(){
		$(this).css('background-position','0 -59px');
	}).mouseout(function(){
		$(this).css('background-position','0 0');
	}).mouseup(function(){
		$(this).css('background-position','0 0');
	});

    $('a').click(function() {  
		if($(this).attr('href') == '#contact') {
			$.colorbox({href:'/contact/', width:'392px', height:'512px', iframe:'true'});
		}

	}); 
	
	$('a[rel="colorBox"]').colorbox();
	$('a[rel="youtube"]').colorbox({iframe:true, innerWidth:640, innerHeight:390});
	
	var myRegExp = /de-meest-gestelde-vragen/;
	if (window.location.href.search(myRegExp)>0) {
		$('em').css('cursor','pointer').css('font-weight','bold').siblings('strong').css('font-weight', 'normal').css('display','block').css('height','auto').hide();
		$('em').click(function() {
			$('em').siblings('strong').hide();
			$(this).siblings('strong').show();
		});
	}
  }
  )(jQuery)
  
)




