jQuery(window).load(function() {
    jQuery('#slider').nivoSlider({
        effect: 'random', // Specify sets like: 'fold,fade,sliceDown'
        slices: 15, // For slice animations
        boxCols: 8, // For box animations
        boxRows: 4, // For box animations
        animSpeed: 500, // Slide transition speed
        pauseTime: 5000, // How long each slide will show
        startSlide: 0, // Set starting Slide (0 index)
        directionNav: true, // Next & Prev navigation
        directionNavHide: true, // Only show on hover
        controlNav: false, // 1,2,3... navigation
        controlNavThumbs: false, // Use thumbnails for Control Nav
        controlNavThumbsFromRel: false, // Use image rel for thumbs
        controlNavThumbsSearch: '.jpg', // Replace this with...
        controlNavThumbsReplace: '_thumb.jpg', // ...this in thumb Image src
        keyboardNav: true, // Use left & right arrows
        pauseOnHover: true, // Stop animation while hovering
        manualAdvance: false, // Force manual transitions
        captionOpacity: 0.8, // Universal caption opacity
        prevText: 'Prev', // Prev directionNav text
        nextText: 'Next', // Next directionNav text
        randomStart: false, // Start on a random slide
        beforeChange: function(){}, // Triggers before a slide transition
        afterChange: function(){}, // Triggers after a slide transition
        slideshowEnd: function(){}, // Triggers after all slides have been shown
        lastSlide: function(){}, // Triggers when last slide is shown
        afterLoad: function(){} // Triggers when slider has loaded
    });
});
jQuery(document).ready(function() {

		jQuery('#ContactForm_Form_naam:text').val('Uw naam'); // Zoeken toevoegen als default value
	jQuery('#ContactForm_Form_naam:text').focus(function(){ // input targetten na 'focus'
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == 'Uw naam'){ // toevoegen van value zoeken
			jQuery(this).attr('value','');
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_naam:text').blur(function(){ // input targetten na 'blur' 
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == ''){
			jQuery(this).attr('value','Uw naam'); // toevoegen van value zoeken
		} else {
			jQuery(this).val(newValue);
		}
	});
	
	
		jQuery('#ContactForm_Form_Emailadres:text').val('Emailadres'); // Zoeken toevoegen als default value
	jQuery('#ContactForm_Form_Emailadres:text').focus(function(){ // input targetten na 'focus'
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == 'Emailadres'){ // toevoegen van value zoeken
			jQuery(this).attr('value','');
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Emailadres:text').blur(function(){ // input targetten na 'blur' 
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == ''){
			jQuery(this).attr('value','Emailadres'); // toevoegen van value zoeken
		} else {
			jQuery(this).val(newValue);
		}
	});	



	jQuery('#ContactForm_Form_Telefoon:text').val('Telefoon'); // Zoeken toevoegen als default value
	jQuery('#ContactForm_Form_Telefoon:text').focus(function(){ // input targetten na 'focus'
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == 'Telefoon'){ // toevoegen van value zoeken
			jQuery(this).attr('value','');
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Telefoon:text').blur(function(){ // input targetten na 'blur' 
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == ''){
			jQuery(this).attr('value','Telefoon'); // toevoegen van value zoeken
		} else {
			jQuery(this).val(newValue);
		}
	});


	jQuery('#ContactForm_Form_Adres:text').val('Adres'); // Zoeken toevoegen als default value
	jQuery('#ContactForm_Form_Adres:text').focus(function(){ // input targetten na 'focus'
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == 'Adres'){ // toevoegen van value zoeken
			jQuery(this).attr('value','');
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Adres:text').blur(function(){ // input targetten na 'blur' 
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == ''){
			jQuery(this).attr('value','Adres'); // toevoegen van value zoeken
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Postcode:text').val('Postcode'); // Zoeken toevoegen als default value
	jQuery('#ContactForm_Form_Postcode:text').focus(function(){ // input targetten na 'focus'
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == 'Postcode'){ // toevoegen van value zoeken
			jQuery(this).attr('value','');
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Postcode:text').blur(function(){ // input targetten na 'blur' 
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == ''){
			jQuery(this).attr('value','Postcode'); // toevoegen van value zoeken
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Van:text').val('Van'); // Zoeken toevoegen als default value
	jQuery('#ContactForm_Form_Van:text').focus(function(){ // input targetten na 'focus'
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == 'Van'){ // toevoegen van value zoeken
			jQuery(this).attr('value','');
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Van:text').blur(function(){ // input targetten na 'blur' 
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == ''){
			jQuery(this).attr('value','Van'); // toevoegen van value zoeken
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Tot:text').val('Tot'); // Zoeken toevoegen als default value
	jQuery('#ContactForm_Form_Tot:text').focus(function(){ // input targetten na 'focus'
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == 'Tot'){ // toevoegen van value zoeken
			jQuery(this).attr('value','');
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Tot:text').blur(function(){ // input targetten na 'blur' 
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == ''){
			jQuery(this).attr('value','Tot'); // toevoegen van value zoeken
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Plaats:text').val('Plaats'); // Zoeken toevoegen als default value
	jQuery('#ContactForm_Form_Plaats:text').focus(function(){ // input targetten na 'focus'
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == 'Plaats'){ // toevoegen van value zoeken
			jQuery(this).attr('value','');
		} else {
			jQuery(this).val(newValue);
		}
	});

	jQuery('#ContactForm_Form_Plaats:text').blur(function(){ // input targetten na 'blur' 
	var newValue = jQuery(this).val();
		if(jQuery(this).val() == ''){
			jQuery(this).attr('value','Plaats'); // toevoegen van value zoeken
		} else {
			jQuery(this).val(newValue);
		}
	});
		
});
