function swapimg(imageid,imagesrc,current) {
	
	if ( ! current )
	{
		img = document.getElementById(imageid);
		if ( img )
		{
			img.src = imagesrc;
		}
	}
}

function nospam(domein,naam)
{
	// TEGEN SPAMBOTS
	var mail = naam + '@' + domein + '.nl';
	mail = '<a href="mailto:' + mail + '">' + mail + '</a>';
	document.write(mail);
}

function toggle_slideshow_play()
{
	var toggle = 0;
	if ( $('#slideshow_play')[0].value < 1 ) toggle = 1;
	$('#slideshow_play')[0].value = toggle;
	
	do_slideshow();
	toggle_slideshow_button();	
}

function do_slideshow()
{
	if ( $('#slideshow_play')[0].value > 0 ) 
	{
		setTimeout("fancybox_next()", 3500);
	}
	toggle_slideshow_button();	
}

function toggle_slideshow_button()
{
	var imgdir = 'http://www.ccb-groep.nl/files/sfeerpagina/';
	if ( $('#slideshow_play')[0].value > 0 )
	{
		$('#img_slideshow')[0].src = imgdir + 'pause.png';
	}
	else
	{
		$('#img_slideshow')[0].src = imgdir + 'play.png';
	}
}

function fancybox_next()
{
	if ( $('#slideshow_play')[0].value > 0 ) 
		$.fancybox.next();
}


