// JavaScript Document
   
$(document).ready(function() {
  
      // Links maken met onclick
	  $('#LinkWij').click( function() { document.location.href='/fsc/index.html'; } );
	  $('#LinkCertificering').click( function() { document.location.href='/certificering/index.html'; } );
	  $('#LinkFTP').click( function() { document.location.href='/ftp/index.html'; } );
	  $('#LinkContact').click( function() { document.location.href='/contact/index.html'; } );

	  // Buttons definieren
	  $('#ButtonISO9001').click( function() { document.location.href='/iso9001/index.html'; } );
	  $('#ButtonCMYK').click( function() { document.location.href='/cmyk-optimizer/index.html'; } );
  	  $('#ButtonISO12647').click( function() { document.location.href='/iso12647/index.html'; } );
  	  $('#ButtonWater').click( function() { document.location.href='/water/index.html'; } );
  	  $('#ButtonVervoer').click( function() { document.location.href='/vervoer/index.html'; } );
  	  $('#ButtonISO14001').click( function() { document.location.href='/iso14001/index.html'; } );
  	  $('#ButtonChemie').click( function() { document.location.href='/chemievrij/index.html'; } );
  	  $('#ButtonAlcohol').click( function() { document.location.href='/alcoholvrij/index.html'; } );
  	  $('#ButtonDuurzaam').click( function() { document.location.href='/duurzaam/index.html'; } );
  	  $('#ButtonFolie').click( function() { document.location.href='/afbreekbarefolie/index.html'; } );
	  $('#ButtonRecycling').click( function() { document.location.href='/recycling/index.html'; } );
  	  $('#ButtonBegin').click( function() { document.location.href='/homepage/index.html'; } );



});

