// JavaScript Document

$(document).ready(function(){
	$('#jflanguageselection').after('<div class="PRelative"><div id="langs"></div></div>');
	
	$('#active_language').appendTo($('#langs'));
	$('#langs').append('<div id="langs_other"></div>');
	$('#jflanguageselection .rawimages span').each(function(){
		if($(this).attr('id')!='active_language'){ $(this).appendTo($('#langs_other')); }
	});
	$('#langs img').each(function(){
		$(this).parent().append($(this).attr('alt'));
	});
	$('#active_language a').attr({'title':$(this).parent().attr('href'), 'href':'javascript:void(0)', 'target': '_self'});
	$('#langs_other').hide();
	$('body').click(function(){
		$('#langs_other').fadeOut();
		$('#langs_other').removeClass('on');
	});
	$('#active_language').click(function(event){
		event.stopPropagation();
		if($('#langs_other').hasClass('on')){
			$('#langs_other').fadeOut();
			$('#langs_other').removeClass('on');
		} else {
			$('#langs_other').fadeIn();
			$('#langs_other').addClass('on');
		}
	});
	$('#jflanguageselection').remove();
	$('.rawimages').remove();
});
