/*

Created on : 2007.08.06
Last Modified : 2007.08.24 
By Guillaume Amringer
mail@guillaumeamringer.com

Fichier contenant toutes les fonctions js et toutes les variables js nécéssaires au site.
(sauf Ajax)

*/
$(document).ready(function(){
	$('#lang_fr').click(function(){
		window.location = window.location.toString().replace($(this).attr('title'),$(this).attr('lang'));
	});
	$('#lang_en').click(function(){
		window.location = window.location.toString().replace($(this).attr('title'),$(this).attr('lang'));
	});
})

//$(this).attr('lang')
