// JavaScript Document

check = 1;
function acordion(pstcd)
{
	if(check == 1){
		$('.subjContent#Contact2').animate( { "height":"460px" }, 300 );
		Tekst = '<iframe width="395" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.nl/maps?f=q&amp;source=s_q&amp;hl=nl&amp;geocode=&amp;q='+pstcd+'&amp;output=embed"></iframe>';
		document.getElementById('goolemymaps').innerHTML = Tekst;

		check = 0;
	} else {
		$('.subjContent#Contact2').animate( { "height":"170px" }, 300 );
		check = 1;
		Tekst = '';
		document.getElementById('goolemymaps').innerHTML = Tekst;
	}
}
			$("a").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});

function acordion2()
{
	if(check == 1){
		$('.subjContent#beschrijving').animate( { "height":"100" }, 300 );
		check = 0;
	} else {
		$('.subjContent#beschrijving').animate( { "height":"0px" }, 300 );
		check = 1;
	}
}
			$("a").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});

			
function acordion3()
{
	if(check == 1){
		$('.subjContent#fullbeschrijving').animate( { "height":"100%" }, 300 );
		check = 0;
	} else {
		$('.subjContent#fullbeschrijving').animate( { "height":"0px" }, 300 );
		check = 1;
	}
}
			$("a").fancybox({
				'titleShow'		: false,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});

			
