$(document).ready(function(){
	
	$("#top-main-menu li").mouseover(function(){
		
		$(this).parent().find('.active-page').addClass('nowActive');
		
		// usuniecie dziubka z aktualnej podstony
		$("#top-main-menu li").each(function(){
				$(this).hasClass('active-page') ? $(this).removeClass('active-page') : '';
				$(this).removeClass('active');
		});
		
		// ustawienie dziubka na elemcie z mouseover
		$(this).addClass('active');
	}).mouseout(function(){
		$("#top-main-menu li").each(function(){
			$(this).removeClass('active');
		})
	});
	
	$("#top-main-menu").mouseout(function(){
		$(this).find("li").each(function(){
			if($(this).hasClass('nowActive')) {
				$(this).removeClass('nowActive');
				$(this).addClass('active-page');
			}
		});
	});
	
	$('.article-list').mouseenter(function(){
		$(this).addClass('over');
	}).mouseleave(function(){
		$(this).removeClass('over');
	});
	
	
	$('.focusOver').focus(function(){
		$(this).addClass('focus');
	}).blur(function(){
		$(this).removeClass('focus');
	});
	
	// FORM VALIDATOR
	$("#booking-form").validate();
	
	// PNG Fix
	$(document).pngFix( );
	
	$("a[rel=gallery-img]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over">Image ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
	
	$('#top-baner').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});

});

function equalColumnHeight() {
	var leftColumnHeight = $('#left-side').height();
	var greyBoxHeight = $('.grey-box-body').height() + 59 + 87;
	var minHeight = leftColumnHeight - greyBoxHeight;
	
	$('.news-modul-content').css({'min-height': minHeight });
}
