$().ready(function() {
	$('.logo').pngFix();

	$('ul.whattoread li .whattoreadcover').pngFix();
	
    $('.contentheadertabs a').click(function() {
        $(this).parents('.contentblock').find('.contentblockbody ul').hide();
        $(this).parents('.contentblock').find('.contentblockbody ul#block-' + $(this).attr('id')).show();
        $(this).parents('.contentheadertabs').find('li').removeClass('active');
        $(this).parents('li').addClass('active');
        return false;
    });

    $('.cataloglist li .catalogitemicon').click(function() {
        window.location = $(this).parent().find('.catalogitembody a').attr('href');
        return false;
    });

    $('form#search-form').attr('action', 'http://poisk.cerkov.ru/search/').attr('method', 'GET');
    $('form#search-form input[name=query]').attr('name', 'q');

    $('.service-switcher #cerkovru').addClass('active');
/*		
    $('.search-subline .checkbox').hide();
    $('.search-subline .checkbox-text').text('Поиск по православным сайтам');
    $('.search-subline .checkbox-text').addClass('nomargin');
*/	

	$('.presscontent img').click(function() {
		
        var newPhoto = $('<img class="imagePreview" style="background-color:#FFFFFF; padding:1px; border: 1px solid #E4DDCF";>');
        var bg = $('<div class="imagePreview">');
        $(bg).css('position', 'absolute').css('top', 0).css('left', 0).css('background-color', '#000000').css('z-index', '20');
        $(bg).width($(window).width());
        $(bg).height($(document).height());
        $('body').prepend($(bg));
        $(bg).css('opacity', 0);
        $(bg).animate({ 'opacity': .75 }, 300);
        var mainobj = $(this);
        $(newPhoto).load(function() {
            $(newPhoto).css('position', 'absolute').css('top', $(mainobj).position().top).css('left', $(mainobj).position().left).css('z-index', 30);
            $(newPhoto).css('opacity', 0);
            $('body').prepend($(newPhoto));
            $(newPhoto).css('max-width', 'inherit');
            var originWidth = $(this).width();
            var originHeight = $(this).height();		
			
            $(newPhoto).width($(mainobj).width());
            $(newPhoto).height($(mainobj).height());
            $(newPhoto).css('opacity', 1);
            $(newPhoto).animate({ 'padding': '10px', 'top': $(document).scrollTop() + ($(window).height() - originHeight) / 2, 'left': ($(window).width() - originWidth) / 2, 'width': originWidth, 'height': originHeight, 'opacity': 1 }, 300);
        });
		
		var tmpsrc = $(this).attr('src');
		if (tmpsrc == '/img/press/foma2_2.jpg') { tmpsrc = '/img/press/foma2_2big.jpg'; }
		if (tmpsrc == '/img/press/foma6_6.jpg') { tmpsrc = '/img/press/foma6_6big.jpg'; }
		if (tmpsrc == '/img/press/naslednik_1_30_page.jpg') { tmpsrc = '/img/press/naslednik_1_30_pagebig.jpg'; }
        $(newPhoto).attr('src', tmpsrc);
        $(newPhoto).click(removePreview);
        $(bg).click(removePreview);
        $(window).scroll(removePreview);
        $(window).resize(removePreview);
        return false;
	
	});
	
	function removePreview() {
		$('.imagePreview').animate({ 'opacity': 0 }, 300, function() { $(this).remove(); });
	}	
});
