$(document).ready(function() {		
	$("img.flag")
		.click(function() {
			var lang = $(this).attr("longdesc");
			
			$(".localised[@lang!=" + lang + "]").filter(":visible")
				.stop()
				.fadeOut('slow', function() {
					$(".localised[@lang=" + lang + "]")
						.stop()
						.fadeIn('slow');
					
					$(".menuitem")
						.stop()
						.animate({top: 0, opacity: 0.5});
				});
			
			$(this).siblings()
				.stop()
				.animate({top: 0, opacity: 0.5})
				.attr('selected', 'no');
			$(this)
				.stop()
				.animate({top: -5, opacity: 1})
				.attr('selected', 'yes');
			
			return this;
		})
		.hover(	function() {
					if ($(this).attr('selected')=='no') {
						$(this).stop().animate({opacity: 1});
					}
				}, 
				function() {
					if ($(this).attr('selected')=='no') {
						$(this).stop().animate({opacity: 0.5});
					}
				});
	
	$("img.flag[@longdesc!=en]")
		.stop()
		.animate({top: 0, opacity: 0.5})
		.attr('selected', 'no');
		
	$("img.flag[@longdesc=en]")
		.stop()
		.animate({top: -5, opacity: 1})
		.attr('selected', 'yes');

	$(".menuitem")
		.stop()
		.animate({top: 0, opacity: 0.5});
});