// JavaScript Document
<!-- rollover images
menu = "";			
function ro( imageName ){
					if( parseInt( navigator.appVersion ) >= 4 ){
						current = document.images[ imageName ].src;
						currentVal = current.substr( current.length - 5, 1 );
						if( currentVal == "0" ) {
							newImg = "img/" + imageName + "1.jpg";
						} else {
							newImg = "img/" + imageName + "0.jpg";
						}
						if( imageName != menu ){
							document.images[ imageName ].src = newImg;
						}
					}
				}				
			//-->

<!-- taal alg voorwaarden
function algVoorwTaal() {
if (document.jumper.choice.value == 1) {
	  window.open ( 'download/Algemene_voorwaarden_Bernhaege_Advocaten _versie_15-8-2008.pdf' );
  	}
  	else if (document.jumper.choice.value == 2) {
		window.open( 'download/General_terms_and_conditions.pdf' );
	}
}
//-->