




var all_ids = new Array('belgique', 'czech', 'france', 'germany', 'ireland', 'kuwait', 'luxembourg', 'sweden', 'switzerland', 'netherlands', 'uk') ;
var all_comments = new Array('EN','FR','NL','DE','SV','CZ') ;

function HideComments() {
	
	for(i=0;i<all_comments.length;i++) {
	//alert('ok') ;
	document.getElementById(all_comments[i]).style.display ='none' ;
	}
	
	for(i=0;i<all_ids.length;i++) {
		//document.getElementById(all_ids[i]).style.background ='red' ;
		document.getElementById(all_ids[i]).style.display ='block' ;
		
	}
}

function ShowHide(aId,aId2) {
	
	var id1 = document.getElementById(aId) ;
	var id2 = document.getElementById(aId2) ;
	//var allids = document.getElementById(all_ids[i]).style.display ;
	for(i=0;i<all_ids.length;i++) {
		if (all_ids[i] == aId) {
			//alert('if') ;
			document.getElementById(all_ids[i]).style.display ='block' ;
			document.getElementById(aId).style.display ='block' ;
			document.getElementById(aId2).style.display = 'block' ;
			//document.getElementById(aId).style.display ='none' ;
		}
		else { 
//			alert('esle') ;
		}
	}
	return false ;
}

function changeBG(aId) {
	
	
	
	for(i=0;i<all_ids.length;i++) {
		if (all_ids[i] == aId) {
			//alert(aid) ;
			//document.getElementById(all_ids[i]).style.background = '' ;
			document.getElementById(all_ids[i]).style.background = 'white' ;
			document.getElementById(aId).style.background = 'url(images/splash/bg-onNEW.jpg)' ;
			
		}
		else {
			//alert('else') ;
			document.getElementById(all_ids[i]).style.background = 'white' ;
			//document.getElementById(all_ids[i]).style.background = '' ;
			//document.getElementById(aId).style.background = '' ;
		}
	}
	
	

}

function changeURL(aUrl) {
	window.location = aUrl
}


function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}