$(document).ready(function() {

	$('.text-h').hide();

	$('input.text, input.tipoff, textarea.textarea').click( function() {
		$('.formError').remove();
		return false;
	});

	$("a[rel^='prettyPhoto'],a[rel^='lytebox']").prettyPhoto({
		animation_speed: 'fast',
		show_title: false,
		overlay_gallery: false,
		theme: 'dark_square'
	});

	$(".form-validate").validationEngine({
		success :  false,
		failure : function() {}
	});

	var options = {
		caps_lock_on: function() {
			$(this).parent().append('<div id="capsalert"></div>');
			$('#capsalert').html("<span style='color: red;'>UWAGA: Przycisk CAPS LOCK jest włączony.</span>");
		},
		caps_lock_off: function() {
			$('#capsalert').empty();
		}

	};

	$("input[type='password']").capslock(options);

    $("ul.sf-menu").supersubs({
        minWidth: 12,
        maxWidth: 27,
        extraWidth: 1,
        delay: 0,
        animation: {opacity:'show', height:'show'},
        speed: "fast"
    }).superfish();

});
