document.observe("dom:loaded", function() {
	$$('a.languageLink').each(function(elem){ 
		elem.observe('click',function(e){
			window.location.href = $(this).href + "?" + $(this).name;
			Event.stop(e);
		});
	});
})
