$(function () {
	$('map').after('<span id="chng"></span>');
	$('#chng').live('click', function () {
		$('#header').prev().attr('src', '/images/header.jpg').css({ 'height': '200px', 'width': '1000px' });
		$(this).attr('id', 'nchng');
		$.cookie('header', 'chng', {expires: null, path: '/'});
	});
	$('#nchng').live('click', function () {
		$('#header').prev().attr('src', '/images/header_mdn.jpg');
		$(this).attr('id', 'chng');
		$.cookie('header', null, {expires: null, path: '/'});
	});
	if ($.cookie('header') == 'chng') {
		$('#chng').trigger('click');
	}
	$('.tabs h2').after('<ul />');
	$('.tabs h3').each(function (ndx) {
		var hInnerText = $(this).text();
		$(this).parent().children('ul').append('<li><a href="#tab' + (ndx+1) + '">' + hInnerText + '</a></li>');
		$(this).next().attr('id', 'tab' + (ndx+1)).addClass('tab');
		$(this).remove();
	});
	$('.tabs ul a').click(function () {
		var hAttrHref = $(this).attr('href');
		$(this).parent().siblings().removeClass('active');
		$(this).parent().addClass('active');
		$(this).parent().parent().parent().children('p').hide();
		$(hAttrHref).slideDown('slow');
		return false;
	}).filter(':first').trigger('click');
	
	function formatTitle(title, currentArray, currentIndex, currentOpts) {
		return '<div style="text-align: left">' + (title && title.length ? '<b style="display: block; margin-right: 80px">' + title + '</b>' : '' ) + 'Фотография ' + (currentIndex + 1) + ' из ' + currentArray.length + '</div>';
	}
	$('.zoom, a[rel=lightbox], a[href$=".jpg"]').fancybox({
		'overlayColor': 'white',
		'titlePosition': 'inside',
		'titleFormat': formatTitle,
		'transitionIn': 'elastic',
		'transitionOut': 'elastic',
		'easingIn': 'easeOutBack',
		'easingOut': 'easeInBack'
	});
	$('.infolder').next().remove().end().wrapAll('<ul class="structure" style="margin-left: 20px; list-style: disc" />').wrap('<li style="padding-top: 12px; font-size: 14px; line-height: 26px" />');
	$('#media:not(:has(img))').hide();
	$('#navi li:has(ul) > a').css('white-space', 'nowrap').append('<img src="/images/column-menu-arrow-active.gif" class="downarrowclass" style="border:0; padding-left: 5px">');
	$('option[value=15]').insertBefore('option[value=16]');
	$('option[value=48]').insertAfter('option[value=47]');
	$('option[value=49]').insertAfter('option[value=48]');
	$('option[value=50]').insertAfter('option[value=49]');
	$('option[value=51]').insertAfter('option[value=50]');
	$('option[value=52]').insertAfter('option[value=51]');
	$('option[value=53]').insertAfter('option[value=52]');
	$('option[value=54]').insertAfter('option[value=53]');
	$('option[value=55]').insertAfter('option[value=54]');
	$('option[value=56]').insertAfter('option[value=55]');
	$('option[value=57]').insertAfter('option[value=56]');
	$('option[value=58]').insertAfter('option[value=57]');
	$('.itemNews:first').prev().remove();
	$('.bio + div').css({ 'clear': 'left', 'padding-top': '10px' }).hide();
	$('.bio a').click(function () {
		$(this).parent().next().slideToggle('slow');
		return false;
	});
	var tab = window.location.hash.replace('#', '');
	if (tab == '') {
		tab = 'link0'
	}
	$('#' + tab + ' a').trigger('click');
	var destination = $('#' + tab).offset().top;
	$('html, body').delay(400).animate({ scrollTop: destination }, 1000);
	$('h1, #contentThird h2').corner('11px');
	$('#navi').children().children('a').hover(function() {
		$(this).css('background-color', '#fedeab /* #bec0c3 */').corner('top 9px');
	}, function() {
		$(this).css('background-color', 'transparent');
	});
	$('#navi ul li:last-child').addClass('last');
	$('.frame').corner('9px');
	$('.dblframe').children().corner('round 8px').end().corner('round 10px');
	$('#columnMenu span').filter(':eq(1), :eq(6)').remove();
	$('.suber li:last').css('border', 'none');
	$('.itemNews img').each(function () {
		var nullgif = $(this).attr('src');
		if (nullgif == '/engine/pics/catalog/0.gif') {
			$(this).remove();
		}
	});
	$('#media a').eq(2).nextAll('a').hide();
});
