// JavaScript Document
$(document).ready(function(){
	$('.mainMenu ul[selected="selected"]').show();
	$('.mainMenu ul[selected="selected"]').prev('span').children('a').addClass('active');
	$('.mainMenu span').click(function(){
		var submenu = $(this).parent('li').children('ul');
		if(submenu.length){
			if(submenu.is(':hidden')){
				$('.mainMenu ul:visible').prev('span').children('a').removeClass('active');
				$('.mainMenu ul:visible').slideUp('normal');
				$(this).children('a').addClass('active');
				submenu.slideDown('normal');
			}
			return false;
		}
	});

	$(window).resize();
	if($('.pdf').length)
		$(document).scroll(function(){
			if($(document).scrollTop() > $('.mainBlock').offset().top)
				$('.pdf').css('top', (55 + ($(document).scrollTop() - $('.mainBlock').offset().top))+'px');
			else
				$('.pdf').css('top', '55px');
		});

	$('a[rel^="prettyPhoto"]').each(function(){
		$(this).next('br').remove();
		if($(this).parent('p').children().length == 1)
			$(this).parent('p').after($(this).clone()).remove();
	});
	$('a[rel^="prettyPhoto"]').prettyPhoto({
		animationSpeed:'slow',
		theme:'facebook'
	});
	
	$('.mp3').jmp3();
});

$(window).resize(function(){
	var mm = 0;
	$('.column, .journalUnitColumn').each(function(){
		if($(this).height() > mm)
			mm = $(this).height();
	});
	if($('.leftBlock').height() > mm)
		mm = $('.leftBlock').height();
	if($(document).height() - 115 > mm)
		mm = $(document).height() - 115;
	$('.column').height(mm - 10);
	$('.journalUnitColumn').height(mm - 52);
	$('.leftBlock').height(mm);
});
