﻿$(document).ready(function() {

$('ul li:last-child').addClass('last');

//poziome rozwijane menu

$('.lvl2').hide();
$('#top ul li').mouseover(function(){
	if($('.lvl2').is(':hidden')){$(this).find('.lvl2').stop(true, true).show();}
});
$('#top ul li').mouseleave(function(){
	if($('.lvl2').is(':visible')){$(this).dequeue().find('.lvl2').stop(true, true).hide();}
});

if( $('.main').get(0) ) {
	$('#col_menu a:first').next(".menu_body").slideDown(300).siblings(".menu_body").hide();
}

//walidacja formularza jquery
$('.button').formValidator({
	scope : '#kontakt',
	errorDiv : '.error'
});

$('tr:odd').addClass('even');

//dodanie first&last
$('#top li:first-child').addClass('first');
$('#top li:last-child').addClass('last');
$('#bottom_menu li:first-child').addClass('first');
$('#bottom_menu li:last-child').addClass('last');


//menu_body myślnik
$('.menu_body a').prepend('- ');
//fancybox
$("a.lightbox").fancybox({
	'titlePosition': 'over'
});
$("a.iframe").fancybox({
	'hideOnContentClick': false,
	'autoDimensions': false,
	'width': 620,
	'height': 500,
	'overlayOpacity': 0.8,
	'overlayColor': '#000',
	'titlePosition': 'over'
});


$('#systemymenu li').hover(function(){
	$(this).find('a').stop(true, false).animate({marginTop: -8}, 300);
}, function(){
	$(this).find('a').animate({marginTop: 0}, 300);
});




//animacja boksów na startowej

$('#oferta_boxes a').hide();
$('#oferta_boxes a').each(function(index){
	var $li = $(this);
	delay = 100;

	setTimeout(function(){
		$li.fadeIn(1000);
	}, index * delay);
});

$('#oferta_boxes a:last-child').css('marginLeft', '165px');


// hover dla menu oferty
$('#oferta_boxes a').hover(function(){
	$(this).find('.bg').animate({height: 36});
	$(this).find('span:first').animate({bottom: 8});
	$(this).find('img').animate({opacity: 0.8});
}, function(){
	$(this).find('.bg').animate({height: 28});
	$(this).find('span:first').animate({bottom: 3});
	$(this).find('img').animate({opacity: 1});
});




}); //ready

