﻿$(document).ready(function() {
	
// Focus border remove
$("a").focus(function() {
	$(this).blur();
});
//fancybox
$("a.lightbox").fancybox({
	titlePosition: 'over'
});


// rozwijane menu pionowe
$(".menu_head").click(function() {$(this).next(".menu_body").slideToggle(500).siblings(".menu_body").slideUp("fast");});
$(".hit").next(".menu_body").slideToggle(500).siblings(".menu_body").slideUp("fast");

//walidacja formularza jquery
$('.button').formValidator({
	scope : '#kontakt',
	errorDiv : '.error'
});
//walidacja formularza małego jquery$('.button2').formValidator({	scope : '#callback',	errorDiv : '.error2'});

//dodawanie klasy do każdego ostatniego el. listy
$('ul li:last-child').addClass('last');
$('#news .item:last-child').addClass('last');$('#news-arch .item:last-child').addClass('last');
//co drugi tag innego koloru
$('.tags li:even').css({color: '#4D92CF'});

//lewe menu hover
$('.firstMenu a').hover(
function(){
	$(this).stop(true, false).animate({backgroundColor: '#fff'}, 'fast');
},
function(){
	$(this).animate({backgroundColor: '#eee'}, 'slow');
});


if ($('input').hasClass('req-string') || $('input').hasClass('szukaj')) {
	$('input.req-string').focusin(function(){
		$(this).val('');
	});
	$('input.szukaj').focusin(function(){
		$(this).val('');
	});
}

//slideshow na głównej
$('#slideshow').cycle({
		fx: 'fade',
		speed: 2000
	});
	
//osadzenie alt slajdu w divie nad
//opis = $('figure img').attr('alt');
//$('figcaption').prepend(opis);//znak wodny dla miniatur filmów
if ($('a.lightbox').get(0)) {	$('a.lightbox[href*="video.php"]').prepend('<img src="images/play-it.png" class="play" alt="">');	$('a.lightbox').hover(	function(){		$(this).stop(true, false).animate({opacity:.7}, 200);	},	function(){		$(this).animate({opacity:1}, 200);	});}
}); //ready end



