function execSearch()
{
	document.location = '/zoek/' + $('#searchField').val();
}

$(document).ready
( 
	function()
	{ 
		$('a[rel="newwindow"]').attr('target', '_blank');
		$('a[rel="fancyzoom"]').fancyZoom();
 		$('#logoAndFades ul').innerfade
		({
			speed: 'slow',
			timeout: 4000,
			type: 'random',
			containerheight: '160px'
		});

		beatin();
	}
);

function beatin()
{
	$("#beat").animate
	(
		{
			width: '40px',
			height: '40px',
			marginTop: 0,
			marginLeft: 0
		},
		200,
		function() { setTimeout('beatout()', 500) }
	);
}

function beatout()
{
	$("#beat").animate
	(
		{
			width: '46px',
			height: '46px',
			marginTop: '-3px',
			marginLeft: '-3px'
		},
		400,
		function() { beatin() }
	);
}
