/**
 * Westerpop 2008 home js execution 
 * @author arjen
 */

if ($('#bodyHome').length) {
	$('#welkomstTekst div.blockInner[lang="en"]').hide();
	$('#welkomstTekst').prepend('<a href="#welkomstTekst" id="langToggle" class="IR IRActive en" title="show introduction text in english">en<span class="IR-aid"></span></a>');
	$('#langToggle').click(function(){
		$('#welkomstTekst div.blockInner').toggle();
		if ($('#langToggle').text() == 'en')
			$('#langToggle').html('nl<span class="IR-aid"></span>').removeClass('en').addClass('nl').attr('title', 'toon introductietekst in het Nederlands');
		else
			$('#langToggle').html('en<span class="IR-aid"></span>').removeClass('nl').addClass('en').attr('title', 'show introduction text in english');
		return false;
	});
}
