/**
 *
 * Copyright (c) 2007 Tom Deater (http://www.tomdeater.com)
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 */
(function($) {
	/**
	 * equalizes the heights of all elements in a jQuery collection
	 * thanks to John Resig for optimizing this!
	 * usage: $("#col1, #col2, #col3").equalizeCols();
	 */
	$.fn.equalizeCols = function(){
		var height = 0,
			reset = $.browser.msie ? "1%" : "auto";
		return this
			.css("height", reset)
			.each(function() {
				height = Math.max(height, this.offsetHeight);
			})
			.css("height", height)
			.each(function() {
				var h = this.offsetHeight;
				if (h > height) {
					$(this).css("height", height - (h - height));
				};
			});
	};
})(jQuery);


$(document).ready(function(){

	if (jQuery.browser.opera && jQuery.browser.version < '10.50') {
		$('body').addClass('opera');
	}

	if (jQuery.browser.opera && jQuery.browser.version >= '10.50') {
		$('body').addClass('operaNew');
	}

	$('body').addClass('js');


	//ColorBox
	$(".colorbox").colorbox({
		previous:'&laquo; poprzednie',
		next:'następne &raquo;',
		current: '{current} z {total}',
		close: 'zamknij'
	});
	$(".colorboxExternal").colorbox({
		previous:'&laquo; poprzednie',
		next:'następne &raquo;',
		current: '{current} z {total}',
		close: 'zamknij',
		iframe : true,
		width: '600px',
		height : '80%'
	});
	$(".colorboxExternalnagrody").colorbox({
		previous:'&laquo; poprzednie',
		next:'następne &raquo;',
		current: '{current} z {total}',
		close: 'zamknij',
		iframe : true,
		width: '825px',
		height : '587px'
	});
	$(".colorboxExternalConnect").click(function(){
	  $(this).closest('tr').find('.colorboxExternal').trigger('click');
	  return false;
	});

/* strona do druku
 * zmiana zakladek na naglowki + tresc
 */
    if(window.location.href.indexOf('notatnik-do-druku') > 0 ){

      /* zmiana h3 na h2 */
      $('div.page > h3').wrapInner('<h2></h2>').unwrap();
      $('.strukturaBox').each(function(){
	var contentCopy = $('<div class="strukturaBox ver02 tableMenu"></div>');
	var headers = $(this).find('.strukturaBoxMenu a');

	headers.each(function(){
	  var T = $(this);
	  contentCopy.append('<h3>'+ T.text() +'</h3>');
	  var contentTabName = T.parent().attr('class').replace(/\s*(active|slvzr[^\s]+)\s*/g, '');
	  T.closest('.strukturaBox').find('.lapContent.'+contentTabName).show().appendTo( contentCopy );
	});

	$(this).replaceWith(contentCopy);

      });
      /* usuniecie bloku "zobacz takze" */
      $('h6').each(function(){
		     if(!!$(this).text().match(/Zobacz także/)){
		       $(this).next().remove();
		       $(this).remove();
		     }
      });
    }


    /* dodanie klasy "noprint" do bloków "zobacz także"" */
    $('h6').each(function(){
      if(!!$(this).text().match(/Zobacz także/)){
	$(this).addClass('noprint').next().addClass('noprint');
      }
    });

    $('img').bind('error', function(){
      $(this).remove();
    });
	//
	//Cufon.replace(
		//'div#pageHeader ul.topMenu li a',
		//{hover: true}
	//);

	Cufon.replace('.MyriadPro, div#pageContent div.leftBox div.box h3, div#pageContent div.leftBox div.box h4, div#pageContent div.contentBox h4, div#pageContent div.contentBox p.centerMiddleText strong, div#pageContent div.centerColumn h2, div#pageContent div.centerColumn h3, div#pageContent div.centerColumn table.default.presentation tr.top td strong, div#pageContent div.centerColumn div.produktyPolecaneBox h5, div#pageContent div.centerColumn dl.jakWziac dt ', { fontFamily: 'Myriad Pro' });
	Cufon.replace('.MyriadProShadow', { fontFamily: 'Myriad Pro', textShadow: '#444 1px 1px' });
	Cufon.replace('.MyriadProGradient', { fontFamily: 'Myriad Pro', color: '-linear-gradient(#4060a9, #435579)' });
	Cufon.replace('.theMixPl, div#pageContent ul.default2 li big', { fontFamily: 'TheMixPl' });

	//linki zewnętrzne
	$('a[rel=_blank]').click(function(){
		this.target = "_blank";
	});

	//*
	$('input[name="phrase"]').each(function() {
		var defaultValue = this.value;
		$(this).focus(function() {
			if(this.value == defaultValue) {
				this.value = '';
			}
		});
		$(this).blur(function() {
			if(this.value == '') {
				this.value = defaultValue;
			}
		});
	});
	//*/

	/*
	 * dodane funkcja poniżej przez p.banaszek dla wyświetlania tabeli z walutami
	 */

	$("#createButton").click(function(){

		$("#createButton").hide();
		$("#currencyTable").fadeIn();
		});


	// Storage - rozmiar tekstu
	var fntSize = $.storage.load("fntSize");

	if(fntSize){
		$("div#pageContent div.centerColumn").css("font-size",fntSize);
	}

	$("div#pageContent div.naviBar dl.tools dd.fontSize").click(function(event){
	  event.preventDefault();
	  var currentSize = parseInt($("div#pageContent div.centerColumn").css("font-size").replace(/^([0-9]+).*$/, "$1"), 10);
	  var action = $(this);
	  var newSize = currentSize;
	  if(action.hasClass('small')){
	    newSize -= 2;
	  }
	  else if(action.hasClass('big')){
	    newSize += 2;
	  }
	  else if(action.hasClass('normal')){
	    newSize = 11;
	  }
	  $("div#pageContent div.centerColumn").css("font-size", newSize +"px");
	  $.storage.save("fntSize", newSize + "px");
	});


	$("div#pageContent div.toolBox div.header").click(function(){
	  // klikniety aktywny - zwijamy go
	  if($(this).parent().hasClass('active')){
	    $(this).parent().removeClass('active');
	  }
	  // klikniety nieaktywny - zwijamy aktywne i pokazujemy klikniety
	  else {
	    $("div#pageContent div.toolBox div.box").removeClass('active');
	    $(this).parent().addClass('active');
	  }
	  // jesli na stronie glownej, to przynajmniej jeden musi byc rozwiniety
	  if($(this).parent().parent().hasClass('main')){
	    $(this).parent().addClass("active");
	  }
	  // zapis stanu - czyli indeksu rozwinietego elementu
	  var rozwiniety = $('div#pageContent div.toolBox div.box').index($('div#pageContent div.toolBox div.box.active'));
	  if(rozwiniety==2 && $('div#pageContent div.toolBox div.box.active .lapContent li').length < 1){
	    rozwiniety = 0;
	  }
	  $.storage.save('toolBox', rozwiniety);
	  return false;
	});

	$("p.zwinRozwin").each(function(){
		if($(this).hasClass('active')){
			$(this).next().addClass('active');
		}
		var tekst = $(this).children().text();
		$(this).click( function(){
			if($(this).hasClass('active')){
				$(this).removeClass('active');
				$(this).next().removeClass('active');
				$(this).children().text(tekst);
			}
			else{
				$(this).addClass('active');
				$(this).next().addClass('active');
				$(this).children().text('zwiń');
			}
			return false;
		});
	});
	$("p.zwinRozwinWszystkie").each(function(){
		if($(this).parent().children('p.zwinRozwin').hasClass('active')){
		  $(this).children().text('zwiń wszystkie');
			$(this).addClass('active');
		}
	});
	$("p.zwinRozwinWszystkie").click(function(){
		if($(this).hasClass('active')){
		  $(this).children().text('rozwiń wszystkie');
			$(this).removeClass('active');
			$(this).parent().children('p.zwinRozwin, div.zwinRozwinContent').removeClass('active');
			$(this).parent().children('p.zwinRozwin').children().text('czytaj dalej');
		}
		else{
			$(this).children().text('zwiń wszystkie');
			$(this).addClass('active');
			$(this).parent().children('p.zwinRozwin, div.zwinRozwinContent').addClass('active');
			$(this).parent().children('p.zwinRozwin').children().text('zwiń');
		}
		return false;
	});

	//faq
	$("div.faqBox h4").each(function(){
		if($(this).hasClass('active')){
			$(this).next().addClass('active');
		}
		$(this).click( function(){
			if($(this).hasClass('active')){
				$(this).removeClass('active');
				$(this).next().removeClass('active');
				$(this).children().text('rozwiń');
			}
			else{
				if($(this).parent().hasClass('akordeon')){
					$(this).parent().children('h4').removeClass('active');
				}
				$(this).addClass('active');
				if($(this).parent().hasClass('akordeon')){
					$(this).parent().children('div.faqContent').removeClass('active');
				}
				$(this).next().addClass('active');
				if($(this).parent().hasClass('akordeon')){
					$(this).parent().children('h4').children().text('rozwiń');
				}
				$(this).children().text('zwiń');
			}
			return false;
		});
	});


	//
	$("p.zwinRozwinWszystkieFAQ").click(function(){
		if($(this).hasClass('active')){
		  $(this).children().text('rozwiń wszystkie');
			$(this).removeClass('active');
		}
		else{
			$(this).children().text('zwiń wszystkie');
			$(this).addClass('active');
		}
			if($(this).next().children('h4').hasClass('active')){
				$(this).next().children('h4').removeClass('active');
				$(this).next().children('div').removeClass('active');
				$(this).next().children('h4').children().text('rozwiń');
			}
			else{
				$(this).next().children('h4').addClass('active');
				$(this).next().children('div').addClass('active');
				$(this).next().children('h4').children().text('zwiń');
			}

		return false;
	});
	//faqSub
	$("div.faqBox div.faqContent h5").each(function(){
		if($(this).hasClass('active')){
			var currentLink = $(this).attr('class').replace(/\s*(active|slvzr[^\s]+)\s*/g, '');
			$(this).parent().children('div.faqSubContent.'+currentLink).addClass('active');
		}
		$(this).click( function(){
			var currentLink = $(this).attr('class').replace(/\s*(active|slvzr[^\s]+)\s*/g, '');

			if($(this).hasClass('active')){
				$(this).parent().children('*').removeClass('active');
			}
			else{
				$(this).parent().children('*').removeClass('active');
				$(this).addClass('active');
				$(this).parent().children('div.faqSubContent.'+currentLink).addClass('active');
			}
			return false;
		});
	});

	//faq
	// rozwiń na podstawie url
	var pathname = window.location.pathname;
	if (pathname.indexOf('/pytania-i-odpowiedzi') == 0) {
		var hash  = window.location.hash;
		var questionIndex = hash.lastIndexOf('pytanie');
		if(questionIndex == 1){
			var questionID = hash.substring(questionIndex+7);
			var questionH5 = $("div.faqBox h5.question_" + questionID);
			questionH5.trigger('click')
			.parent()
			.prev("h4").trigger('click');
			$(document).scrollTop( questionH5.position().top );
		}
	}

	/*
	 * zakładki typu ul.lapMenu + ul.lapContent
	 * funkcja znajduje i pokazuje zakladke odpowiadajaca aktywnemu elementowi menu
	 */
	var showTab = function( context ){
	  context = context || document;
	  $('.strukturaBoxMenu .active', context ).each( function(){
	    var menu = $(this).closest('.strukturaBoxMenu');
	    var currentTabName = menu.find('.active').attr('class').replace(/\s*(active|slvzr[^\s]+)\s*/g, '');
	    menu.closest('.strukturaBox').find('.lapContent.'+currentTabName).addClass('active');
	    });
	};
	showTab();

	/*
	 * zakładki typu ul.lapMenu + ul.lapContent
	 * najpierw przypisanie # w adresach
	 * klikniecie w link powoduje usuniecie klasy 'active' z elementow  w obrebie grupy i wlaczenie odpowiedniej zakladki
	 */
	$('.strukturaBoxMenu a').each(function(){
	  $(this).attr('href', window.location.href.replace(/#.*/,'') + '#' + $(this).parent().attr('class').replace(/\s*(active|slvzr[^\s]+)\s*/g, '') );
	}).click( function(e){
	  var parent = $(this).parent();
	  var tabGroup = parent.closest('.strukturaBox');
	  tabGroup.find('.active').removeClass('active');
	  parent.addClass('active');
	  showTab(tabGroup);
	});

	$("div#pageContent div.centerColumn div.strukturaBox table.strukturaBoxMenu tr th a").wrapInner('<span />').each(function(){
	  var $t = $(this);
	  var wysokoscSpan = $t.children('span').height();
	  var wysokoscA = $t.height();
	  //console.log(wysokoscSpan, wysokoscA);
	      $t.children('span').css('padding-top',(Math.max( wysokoscA-wysokoscSpan, 0 )/2+'px'));
	});

	$("div#pageContent div.centerColumn div.strukturaBox table.strukturaBoxMenu tr th.right img").click(function(){
		var wartosci = $("div#pageContent div.centerColumn div.strukturaBox table.strukturaBoxMenu tr th a");
		if(wartosci.length>0){
			for(var i=0; i<wartosci.length; i++){
				if($(wartosci[i]).parent().hasClass('active')){
					if(i==(wartosci.length-1)){
						$(wartosci[0]).trigger('click');
					}
					else{
						$(wartosci[i+1]).trigger('click');
					}
					break;
				}
			}
		}
		return false;
	});
	$("div#pageContent div.centerColumn div.strukturaBox table.strukturaBoxMenu tr th.left img").click(function(){
		var wartosci = $("div#pageContent div.centerColumn div.strukturaBox table.strukturaBoxMenu tr th a");
		if(wartosci.length>0){
			for(var i=0; i<wartosci.length; i++){
				if($(wartosci[i]).parent().hasClass('active')){
					if(i==0){
						$(wartosci[wartosci.length-1]).trigger('click');
					}
					else{
						$(wartosci[i-1]).trigger('click');
					}
					break;
				}
			}
		}
		return false;
	});
	//archiwum stronicowanie
	if($("div#pageContent div.centerColumn div.strukturaBox div.strukturaBoxContent div.lapContent p.paging a")){
		$('div#pageContent div.centerColumn div.strukturaBox div.strukturaBoxContent div.lapContent p.paging a.active').each(function(){
			var currentTab = $(this).attr('class').replace(/\s*(active|slvzr[^\s]+)\s*/g, '');
			$(this).parent().parent().children('dl.'+currentTab).addClass('active');
		});

		$("div#pageContent div.centerColumn div.strukturaBox div.strukturaBoxContent div.lapContent p.paging a").click(function(){
			$(this).removeClass("active");
			$(this).parent().parent().children('p').children().removeClass("active");
			$(this).parent().parent().children('dl.listaDL').removeClass("active");
			var classname = $(this).attr("class");
			$(this).filter('.'+classname).addClass('active');
			$(this).parent().parent().children('p').children().filter('.'+classname).addClass('active');
			$(this).parent().parent().children('dl.listaDL').filter('.'+classname).addClass('active');
			return false;
		});
	}



	//naszeWartości
	if($("div#pageContent div.centerColumn div.wartosciBox ul.wartosciBoxMenu li ul li.active")[0]){
		var currentTab = $("div#pageContent div.centerColumn div.wartosciBox ul.wartosciBoxMenu li ul li.active").attr('class').replace(/\s*(active|slvzr[^\s]+)\s*/g, '');
		$("div#pageContent div.centerColumn div.wartosciBox p.lapContent."+currentTab).addClass('active');

		$("div#pageContent div.centerColumn div.wartosciBox ul.wartosciBoxMenu li ul li a").click(function(){
			$("div#pageContent div.centerColumn div.wartosciBox ul.wartosciBoxMenu li ul *, div#pageContent div.centerColumn div.wartosciBox p.lapContent").removeClass("active");
			var classname = $(this).parent().attr("class");
			$(this).parent().addClass("active");
			$("div#pageContent div.centerColumn div.wartosciBox p.lapContent").filter('.'+classname).addClass('active');
			return false;
		});
	}
	$("div#pageContent div.centerColumn div.wartosciBox p.opisNaszychWartosci .next").click(function(){
		var wartosci = $("div#pageContent div.centerColumn div.wartosciBox ul.wartosciBoxMenu li ul li a");
		if(wartosci.length>0){
			for(var i=0; i<wartosci.length; i++){
				if($(wartosci[i]).parent().hasClass('active')){
					if(i==(wartosci.length-1)){
						$(wartosci[0]).trigger('click');
					}
					else{
						$(wartosci[i+1]).trigger('click');
					}
					break;
				}
			}
		}
		return false;
	});
	// stala wysokosc boksow 'wartosci' (taka jak najwyzszego boksu)
	if( $('div.wartosciBox').length > 0){
	  var h = [];
	  var boxes = $('div.wartosciBox .contentBox p.lapContent');
	  boxes.each( function(){ h.push( $(this).height() + 32 ); });
	  boxes.css({ 'height' :  Math.max.apply( null, h ) });
	}
	$("div#pageContent div.centerColumn div.wartosciBox p.opisNaszychWartosci .prev").click(function(){
		var wartosci = $("div#pageContent div.centerColumn div.wartosciBox ul.wartosciBoxMenu li ul li a");
		if(wartosci.length>0){
			for(var i=0; i<wartosci.length; i++){
				if($(wartosci[i]).parent().hasClass('active')){
					if(i==0){
						$(wartosci[wartosci.length-1]).trigger('click');
					}
					else{
						$(wartosci[i-1]).trigger('click');
					}
					break;
				}
			}
		}
		return false;
	});

	//
	$("div#pageContent div.centerColumn div.slownikIndexBox form p a").click(function(){
		$(this).parent().parent().toggleClass('active');
		if($(this).parent().parent().hasClass('active')){
		  $(this).children().text('Zmień');
		} else {
		  $(this).children().text('Zwiń');
		}
		return false;
	});

	//
	$("div#pageContent div.centerColumn div.slownikIndexBox div.inside ul.hasla li:even").css("background-color", "#f3f3f3");

	//słownik
	if($("div#pageContent div.centerColumn div.slownikIndexBox ul.abc li a.active")[0]){
		var currentTab = $("div#pageContent div.centerColumn div.slownikIndexBox ul.abc li a.active").attr('class').replace(/\s*(active|slvzr[^\s]+)\s*/g, '');
		$("div#pageContent div.centerColumn div.slownikIndexBox div.inside."+currentTab).addClass('active');

		$("div#pageContent div.centerColumn div.slownikIndexBox ul.abc li a").click(function(){
			$("div#pageContent div.centerColumn div.slownikIndexBox ul.abc li a, div#pageContent div.centerColumn div.slownikIndexBox div.inside").removeClass("active");
			var classname = $(this).attr("class");
			$("div#pageContent div.centerColumn div.slownikIndexBox ul.abc li a").filter('.'+classname).addClass('active');
			$("div#pageContent div.centerColumn div.slownikIndexBox div.inside").filter('.'+classname).addClass('active');
			return false;
		});
	}
	//słownik stronicowanie
	if($("div#pageContent div.centerColumn div.slownikIndexBox div.inside p.paging a")){
		$('div#pageContent div.centerColumn div.slownikIndexBox div.inside p.paging:first-child a.active').each(function(){
			var currentTab = $(this).attr('class').replace(/\s*(active|slvzr[^\s]+)\s*/g, '');
			var currentParent = $(this).parent().parent().attr('class').replace(/\s*(active|slvzr[^\s]+)\s*/g, '');
			var currentChildren = $(this).parent().parent().children('ul.'+currentTab).attr('class');
			$(this).parent().parent().children('ul.'+currentTab).addClass('active');
			//console.log(currentParent);
			//console.log(currentTab);
			//console.log(currentChildren);
		});

		$("div#pageContent div.centerColumn div.slownikIndexBox div.inside p.paging a").click(function(){
			$(this).removeClass("active");
			$(this).parent().parent().children('p').children().removeClass("active");
			$(this).parent().parent().children('ul.hasla').removeClass("active");
			var classname = $(this).attr("class");
			$(this).filter('.'+classname).addClass('active');
			$(this).parent().parent().children('p').children().filter('.'+classname).addClass('active');
			$(this).parent().parent().children('ul.hasla').filter('.'+classname).addClass('active');
			return false;
		});
	}

	//

	$("a.createButton").each(function(){
		var text = $(this).html();
		if(/.*(Powrót|Powr&oacute;t).*/.test( text )){
			$(this).click( function(){ history.go(-1); return false; });
		}
		$(this).wrapInner('<span class="button"></span>');
	});
	$("input.createButton").each(function(){
		var text = $(this).attr("value");
		$(this).wrap('<a class="createButton"></a>');
		$(this).parent().prepend('<span class="button"></span>');
		$(this).parent().children('.button').text(text);
		var szerokosc = $(this).parent().width();
		$(this).width(szerokosc+32);
		if($(this).hasClass('znajdz')){
			$(this).parent().addClass('znajdz');
		}
		if($(this).hasClass('noHover')){
			$(this).parent().addClass('noHover');
		}
		if($(this).hasClass('invert')){
			$(this).parent().addClass('invert');
		}
		if($(this).hasClass('mirror')){
			$(this).parent().addClass('mirror');
		}
		if($(this).hasClass('floatRight')){
			$(this).parent().addClass('floatRight');
		}
	});

	$('#wniosek-jump input.createButton').remove();
	$('#wniosek-jump a.createButton').attr('target','_blank').attr('href', $('#wniosek-jump select').val());
	$('#wniosek-jump select').bind('change', function(){
	  $('#wniosek-jump a.createButton').attr('href', $(this).val());
	});


	// wykresy / notowania: kontrolki.
		    if( $('label[for=okresCzasu]').length > 0 ){

		      var ref = $('label[for=okresCzasu]');
		      var okres = $('select[name=przedzial]')
			.bind('change', function(){
				ref.find('input').attr('checked', true);
			});

		      var dates = ref.parent().find('select').not( okres )
			.bind('change', function(){
				ref.parent().find('label').not( ref ).find('input').attr('checked', true);
			});
		    }
	//
	$('.drukuj').click(
		function(){
			print();
			return false;
		}
	);

	$("div#pageFooter div.top dl").equalizeCols();

//skalowanie <iframe> przez zmienną w #hash

	if( $('iframe#mapa-placowek').length > 0 ){

		window.setInterval(function(){
			window.oldHash = '';
			if(location.hash != oldHash){
				window.oldHash = location.hash;
				if(/#h:[0-9]+;/.test(location.hash)){
					$('iframe#mapa-placowek')[0].setAttribute('height', parseInt( location.hash.replace(/(#h:)([0-9]+)(;)/,"$2"), 10 ));
				}
			}
		}, 100);

	}


    $('a[href^=#]').each(function(){
      var h = $(this).attr('href').replace(/^[^#]*#/,'');
      var L = (window.location.href).replace(/#.*/,'');
      var parent = $(this).parent().eq(0)[0];

      $(this).attr('href', L + '#' + h );

      if(h.length && $('.lapContent.'+h+', th.'+h) ){
	$(this).click(function(){

			$('th.'+h+' a').trigger('click');

			return false;
		      });
	}
    });

    //$('a[href^=http]:not([href*=lukasbank.adv.wroc.pl]):not([href*=lukasbank.pl]):not([href*=lukas.com.pl])').addClass('external');
    $('a:has(img)').addClass('nohover').removeClass('external');



    window.oHash = '';
    window.setInterval(function(){
      // obsluga hasha w adresie.
      if(location.hash && location.hash != window.oHash){
	window.oHash = location.hash;
	var h = location.hash.replace('#','').split(',');

	var offset;
	try {
  	  $('th.'+h[0]+' a').trigger('click');
	  offset = $( 'h4' + window.location.hash + ', h4' + window.location.hash.replace('#','.' )).trigger('click').offset() || { top: 0, left:0 };
	} catch(e){
	  offset = { top: 0, left:0 };
	}

	if(h[1] && $('#'+h[1]).length > 0 ){
	  $(document).scrollTop( $('#'+h[1]).position().top - 30 );
	}
	  else if( offset.top > 0 ){
	  $(document).scrollTop( offset.top );
	}
      }
    }, 100);


    //
    $("div#pageHeader form.znajdz").submit(function(){
      if ($("div#pageHeader form.znajdz input[type='text']").val() == "Wpisz szukane słowa…") {
	$("div#pageHeader form.znajdz input[type='text']").focus();
	return false;
      }
      return true;
    });

	//
	$('img[alt="pdf"]').parent().parent().next().css({'width':'338px'});
	$('div#pageContent table.default2.files tbody tr td:nth-child(2n)').css({'width':'338px'})

    $('body').append('<script type="text/javascript" src="' + baseUrl + 'js/schowek.js"></script>');

	//logowanie - kod
	$('div#pageHeader ul.topMenu li.logowanie a').click(function(){
		_gaq.push(['_trackEvent', 'Odnośnik / Logowanie', 'LUKAS e-Bank']);
		return true;
	});
});
