$(document).ready(function() {

	// Voor menu hovers met een ander font weight
	Cufon.replace(
		$("#content-menu-left li.active a"), {
		fontFamily : 'Avant Garde Gothic Demibold',
		hover      : true
	});
	
	// link met deel bold; fix voor wegvallen bold bij rollover:
	Cufon.replace(
		$(".menu-content a span.demibold"), {
		fontFamily : 'Avant Garde Gothic Demibold',
		hover      : false
	});
	
	
	// click on collection:
//	$('#content-main .collection').css({'cursor':'pointer'});
//	$('#content-main .collection').click(function() {
//		location.href = $(this).find('a').attr('href');
//	});
	
	// click op oranje deel van de payoff (rechts):
	// geen link in h2 anders valt bold weg bij rollover
	$('#orange-payoff').css({'cursor':'pointer'});
	$('#orange-payoff').click(function() {
		location.href = '9-Vestigingen.php';
	});
	
	// pagination:
	$('.pagenav a').not('.pagenav_imgbutton').not(':last').after("<span> . </span>");// after() kan alleen een TAG met inhoud toevoegen..
	
	// carousel config:
	$('#carousel').fadeContent({
		'interval'   : 5000,
		'speed'      : 2000,
		'fader_item' : '.fader'
	});
	
	// oranje pijltje voor link (en underline) als er in de title-attribute "** " staat:
	$('#content-page-text a[title*="** "]').css({'text-decoration':'underline'});
	$('#content-page-text a[title*="** "]').before('<img style="vertical-align: bottom;" src="img/arrows/arrow_textlink.gif" />');
	

});

