jQuery(function() {
	jQuery('.link-lang-switch').live('click', function() {
		jQuery.post('/ajax/total_ajax/', { new_lang: jQuery(this).attr('rel') }, function(data) {
			if (data != 'error') {
				location.href=data;
			}
		});
	});
});
