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


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


//rozwijane menu poziome [horiz]

$('.lvl2').hide();
$('#horiz').droppy({
	speed: 2
});



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

	jQuery.fn.exists = function(){return jQuery(this).length>0;}
	$(document).pngFix();

	// Focus border remove

			$("a").focus(function() {
				$(this).blur();
			});


	// Lightbox

			if ($(".lightbox, #gallery").exists()) {
				$(".lightbox, #gallery a").prettyPhoto({
					theme:'light_square',
					default_width: 320,
					default_height: 240
				});
			}



	// Menu Drop-Down:

			$(".menu_head").click(function() {
				$(".menu_body").slideUp (300);
				$(this).next(".menu_body").slideToggle(300);
			});

			$(".hit").next(".menu_body").slideToggle(300).siblings(".menu_body").slideUp("fast");

	// Empty field after click

			$('#wyszukiwarka .field').focus(function() { $(this).val(''); });



	// Remove

				$("#menu li:last").css({ background: 'none' });
				$("#tools a:eq(1),#tools a:eq(2)").css({ border: 'none' });

});

