$(document).ready(function() {
				$('.lang').each(function() {
					obj = $(this);
					$(this).find('.language').each(function() {
						if(!$(this).hasClass('fr')) {
							$(this).hide();
						}else {
							obj.css('height', $(this).height());
						}
					});
				});
				$('.changeLanguage').click(function() {
					lang = $(this).attr('rel');
					$('.lang .language').fadeOut(function() {
						$('.'+lang).fadeIn(function() {
							$(this).parent('.lang').css('height', $(this).height());
						});
					});
				});
				
				$('#easyticker').easyticker();	
			});
