$(function()
{
	var werkAsseblief = function()
	{
		setTimeout(function(){
			$('#werkAsseblief li:first').animate( {marginTop: '-120px'}, 800, function()
			{
				$(this).detach().appendTo('ul#werkAsseblief').removeAttr('style');
			});
			werkAsseblief();
		}, 4000);
	};
	werkAsseblief();
});
