$(document).ready(function(){
	Shadowbox.init();
	
	$('button, a.button').button();
	
	$('#slider').anythingSlider({
		buildArrows: false,
		width: '420px',
		buildStartStop: false,
		hashTags: false,
		autoPlay: true,
		delay: 4000
		});
		
	$( ".datepicker" ).datepicker({ dateFormat: 'yy-mm-dd' });
	
	////// VALIDATES
	
	$('form').validateform(); 
	
		
});// JavaScript Document


$('.expandammount').click(function(){
	
	if($(this).is(':checked'))
	{	$(this).siblings('.ammountwrapper').slideDown();}
	else {$(this).siblings('.ammountwrapper').slideUp();}
	
});

function getlocation(id) {
		
		$.get('8_BUSINESSLOGIC/publicformhandeling.php?action=getlocation&id='+id, function(data) {
			
			var txt = data;
		  	$.prompt(txt,{
				buttons: {'Sluiten':true} 
			});
		  
		});
	}

