﻿$(document).ready(function() {// topmenu hovervar xAxis = "-235px";$('a.tMenu1').mouseenter(	function(){		$(this).stop(true, false).animate({backgroundPosition: '-235px -50px'}, 'slow', 'easeOutBounce');		});$('a.tMenu1').mouseleave(		function(){		$(this).animate({backgroundPosition: '-235px 0'}, 'slow', 'easeOutBounce');	});$('a.tMenu2').mouseenter(	function(){		$(this).stop(true, false).animate({backgroundPosition: '-305px -50px'}, 'slow', 'easeOutBounce');		});$('a.tMenu2').mouseleave(		function(){		$(this).animate({backgroundPosition: '-305px 0'}, 'slow', 'easeOutBounce');	});$('a.tMenu3').mouseenter(	function(){		$(this).stop(true, false).animate({backgroundPosition: '-387px -50px'}, 'slow', 'easeOutBounce');		});$('a.tMenu3').mouseleave(		function(){		$(this).animate({backgroundPosition: '-387px 0'}, 'slow', 'easeOutBounce');	});$('a.tMenu4').mouseenter(	function(){		$(this).stop(true, false).animate({backgroundPosition: '-474px -50px'}, 'slow', 'easeOutBounce');		});$('a.tMenu4').mouseleave(		function(){		$(this).animate({backgroundPosition: '-474px 0'}, 'slow', 'easeOutBounce');	});$('a.tMenu5').mouseenter(	function(){		$(this).stop(true, false).animate({backgroundPosition: '-556px -50px'}, 'slow', 'easeOutBounce');		});$('a.tMenu5').mouseleave(		function(){		$(this).animate({backgroundPosition: '-556px 0'}, 'slow', 'easeOutBounce');	});$('a.tMenu6').mouseenter(	function(){		$(this).stop(true, false).animate({backgroundPosition: '-672px -50px'}, 'slow', 'easeOutBounce');		});$('a.tMenu6').mouseleave(		function(){		$(this).animate({backgroundPosition: '-672px 0'}, 'slow', 'easeOutBounce');	});$('a.tMenu7').mouseenter(	function(){		$(this).stop(true, false).animate({backgroundPosition: '-820px -50px'}, 'slow', 'easeOutBounce');		});$('a.tMenu7').mouseleave(		function(){		$(this).animate({backgroundPosition: '-820px 0'}, 'slow', 'easeOutBounce');	});//koniec animacji menu		$("a.lightbox").fancybox({				titlePosition: 'over'			});	$("a.iframe").fancybox({		'hideOnContentClick': false,		'autoDimensions': false,		'width': 810,		'height': 450,		'overlayOpacity': 0.8,		'overlayColor': '#000',		'scrolling': 'no'	});		$(".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$('.button').formValidator({scope : '#formularz',errorDiv : '.error'});//hover newsów$('.item1 a').hover(function(){		$('#foto2news1').stop(true, false).animate(	{opacity: '0.4'}, 'slow');		}, function() {		$('#foto2news1').animate(	{opacity: '1'}, 'slow');	});$('.item2 a').hover(function(){		$('#foto2news2').stop(true, false).animate(	{opacity: '0.4'}, 'slow');		}, function() {		$('#foto2news2').animate(	{opacity: '1'}, 'slow');	});$('.item3 a').hover(function(){		$('#foto2news3').stop(true, false).animate(	{opacity: '0.4'}, 'slow');		}, function() {		$('#foto2news3').animate(	{opacity: '1'}, 'slow');	});//dodanie ramki do miniatur w galeriach$('#gallery a').prepend('<img class="overimg" src="images/fotoborder.png" alt="" />');$('#gallery-product a').prepend('<img class="overimg" src="images/fotoborder2.png" alt="" />');$('.lvl2 a').prepend('<img class="overimg" src="images/fotoborder3.png" alt="" />');});//$.ready
