$(function()
{
	// Laad video van YouTube met mooie fadeIn en -Out
	$('#laadvideo').click(function(e)
	{
		e.preventDefault();
		$('#laadvideo').css('cursor', 'progress');
		
		$('#videoholder').fadeOut('slow', function()
		{
			$("#preloader").html('<iframe width="410" height="226" src="http://www.youtube.com/embed/MdScwFDuxA8?rel=0&showinfo=0&autohide=1&autoplay=1" frameborder="0" allowfullscreen></iframe>');
			$('#preloader iframe').load(function()
			{
				$('#videoholder').html($('#preloader').html());
				$('#preloader iframe').remove();
				$('#videoholder').fadeIn('slow', function()
				{
					$('#laadvideo').css('cursor', 'default');
				});
			});
		});
	});
	
	// Animeer button hover
	$('.red-button').hover(function()
	{
		$(this).stop().animate(
		{
			boxShadow: '0 0px 15px rgba(0,0,0,0.5)'
		});
	}, function()
	{
		$(this).stop().animate(
		{
			boxShadow: '0 1px 2px rgba(0,0,0,0.5)'
		});
	});
});
