$(document).ready(function () {
	var show = false;
	$('#tophat DT').click(function () {
		if (!show) {$('#tophat DD').show(); show = true;}
		else {$('#tophat DD').hide(); show = false;}
	});
	
	$('#tophat DD').each(function () {
		$(this).click(function () {
			var lang_select = $(this).text();
			var lang_replace = $('#tophat DT').text();
			$(this).text(lang_replace);
			$('#tophat DT').text(lang_select);
			$('#tophat DD').hide();
			show = false;
			ChangeLanguage(this.lang)
		});
	});
	
});

function ChangeLanguage(lang)
{
	if(lang=="ru") $url = "/";
	else  $url = "/"+lang+"/";
	window.location.href = $url;
}

$(document).ready(function () {	
	$('.preview_container IMG').each(function () {
		$(this).click(function () {
			if($(this).attr('class')!='selected')
			{
				$('.container SPAN').fadeIn('fast');
				$('#head_foto').fadeOut('fast');
				
				$('.preview_container IMG').removeClass('selected');
				$(this).addClass('selected');
				var id_img = this.id;
				$('#head_foto').attr('src', '/image/articles/'+id_img+'.jpg').attr('alt',this.alt).attr('title',this.title);
				$('#head_foto').load(function () {
					$('.container SPAN').fadeOut('fast');
					$('#head_foto').fadeIn('fast');
				});
			}		
		});
	});
});
