﻿$(document).ready(function() {
// rozwijane menu pionowe
$(".menu_head").click(function() {$(this).next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("fast");});
$(".hit").next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("fast");
//walidacja formularza jquery
$('#submitBtn').formValidator({
	scope : '#formularz',
	errorDiv : '.error-div'
});
// dodanie klasy dla pierwszego el. menu
$('.tMenu li:first-child').addClass('first');
//dodanie last
$('.bMenu li:last-child').addClass('last');
//dla za długiego elementu inna klasa
$('.tMenu span:contains("pytania")').addClass('double');
//fancybox
$("a.lightbox").fancybox({
	'titlePosition': 'over'
});
$("a.iframe").fancybox({
	'hideOnContentClick': false,
	'autoDimensions': false,
	'width': 620,
	'height': 500,
	'overlayOpacity': 0.8,	'overlayColor': '#000',
	'titlePosition': 'over'
});
//animacje inne$('a.logo').mouseenter(function(){	$('#logicon').effect("bounce", 300);});
$('#tmenu1').hover(function(){$('#tmenu1 img').stop(true, false).animate({left:-5, top:-10, width: 129, height: 129}, 250);},function(){$('#tmenu1 img').animate({top:10, left:12, width: 94, height: 94}, 250);});$('#tmenu2').hover(		function(){$('#tmenu2 img').stop(true, false).animate({left:-8, top:0, width: 129, height: 129}, 250);},		function(){$('#tmenu2 img').animate({top:15, left:10, width: 94, height: 94}, 250);});$('#tmenu3').hover(		function(){$('#tmenu3 img').stop(true, false).animate({left:-8, top:0, width: 129, height: 129}, 250);},		function(){$('#tmenu3 img').animate({top:12, left:10, width: 94, height: 94}, 250);});$('#tmenu4').hover(		function(){$('#tmenu4 img').stop(true, false).animate({left:-8, top:-13, width: 129, height: 129}, 250);},		function(){$('#tmenu4 img').animate({top:5, left:10, width: 94, height: 94}, 250);});$('#tmenu5').hover(		function(){$('#tmenu5 img').stop(true, false).animate({left:-6, top:-10, width: 129, height: 129}, 250);},		function(){$('#tmenu5 img').animate({top:5, left:10, width: 94, height: 94}, 250);});$('#tmenu6').hover(		function(){$('#tmenu6 img').stop(true, false).animate({left:-5, top:-7, width: 129, height: 129}, 250);},		function(){$('#tmenu6 img').animate({top:5, left:10, width: 94, height: 94}, 250);});
}); //ready
