jQuery(document).ready(function() {
	
	$('.showbig').click(function() {
	   $("#showObject").attr("src",$(this).attr("href"));
			// stop normal link click
	   return false;
	});
	
  $('A[rel="uceeradio"]').click( function() {
      window.open( $(this).attr('href'),'uceeradio','width=460, height=338, location=no, menubar=no, status=no, toolbar=no, scrollbars=no, resizable=yes' );
      return false;
  });
 
	
	$('#contactform').submit(function (){
		var okBool=true;
		$('#contactform :input.verplicht ').each(function (i){
		    if(jQuery.trim($(this).val())=='' )
		    {
		        $(this).parents("li").addClass("leegclass");
		        okBool=false;
		    }else{
		        $(this).parents("li").removeClass("leegclass");
		    }		     
		});		
		return okBool;
	});
	

	var scrlhgt=(document.documentElement.scrollHeight)-195;
	var hgt=(document.documentElement.clientHeight)-195;
		
	//$('#left_container').height(Math.max(scrlhgt, hgt));
	$('#left_container').height(Math.max(scrlhgt, hgt));

	$('#emailadresNieuwsbrief').focus(function(){
			if($(this).val()=='E-mail adres')
				$(this).val('');
		});
   	
});
