/*
	FONCTIONS EXCLUSIVES
*/

	function switchLangue(langue){
		var temp = window.location.href.split('/');
		var page = temp[temp.length-1].split('?');
		var lien = page[0]+"?switchlanguage="+langue;
		if (page[1]!=null){
			var query = page[1].split('&');
			for(i=0; i<query.length; i++){
				if(query[i].indexOf('switchlanguage')==-1){
					lien += '&'+query[i];
				}
			}
		}
		document.location.href = lien;
	}