$(function(){
	
	$('table.rows tr:nth-child(odd)').addClass('oneven');
	$('table.rows tr:nth-child(even)').addClass('even');
	
	// Datepicker
	$('head').append('<link href="' + absolute_sitepath + 'css/jquery/datepicker/jquery.datepicker.css" rel="stylesheet" type="text/css" media="screen" />');
	$('head').append('<script src="' + absolute_sitepath + 'js/jquery/jquery.datepicker.js" type="text/javascript"></script>');
		// Required	
		$('head').append('<script src="' + absolute_sitepath + 'js/jquery/datepicker/jquery.date.js" type="text/javascript"></script>');
		$('head').append('<!--[if IE]><script type="text/javascript" src="' + absolute_sitepath + 'js/jquery/datepicker/jquery.bgiframe.js"></script><![endif]-->');
	//$('.datepicker').datePicker({clickInput:true,createButton:false});
	
	// Check of bezoeker al aan de beurt is
	setInterval(function(){ $.get( absolute_sitepath + 'ajax/check/wachtrij.check.php',{},function(data){}); },10000);
	
});

// Functies inladen
$('head').append('<script src="' + absolute_sitepath + 'js/functions.js" type="text/javascript"></script>');
