$(document).ready(function() {
	$('#menu').superfish();
	//$('#carousel').jcarousel();
	
	/* HTML5 jQuery fix (placeholder attribute)
	 *
	 * Gebruik: <input type="text" placeholder="De standaardwaarde" />
	 */
	$('input[placeholder]').each(function() {
		if( $(this).val() == '' ) $(this).addClass('value-placeholder').val($(this).attr('placeholder')); // Leeg veld? Dan zetten we de placeholder waarde erin
		
		$(this).bind('focus', function() { // onFocus
			if( $(this).val() == $(this).attr('placeholder') ) { // De standaardwaarde staat erin; veld leegmaken en class verwijderen
				$(this).removeClass('value-placeholder').val('');
			}
		});
		
		$(this).bind('blur', function() { // onBlur
			if( $(this).val() == '' ) { // Lege waarde? Dan zetten we de standaardwaarde weer terug
				$(this).addClass('value-placeholder').val($(this).attr('placeholder'));
			}
		});
	});
	
	//Cufon.replace('.content-block h3', {textShadow: '#9c632f 1px 1px'});
});
