 $(document).ready(function(){
    var wlocation = window.location + "";

				 
    $("#gallery_mod").click(function () {
      	$("#banner").slideToggle("slow");
 	}).toggle(function () {
		$("#gallery_mod").text('pokaż galerię'); }, function() {
		$("#gallery_mod").text('schowaj galerię'); });
	});
	  
	$(function(){
		$('#loopedSlider').loopedSlider({
			autoStart: 4000,	
			restart: 4000
		});
		$('#newAddress').hover(
			function(){
				$(this).stop().animate({height: "44px"}, 200);
				$('#newAddress .marker').stop().animate({height: "43px"}, 200);
				$('#newAddress .more').stop().slideDown(180);
			}, 
			function(){
				$(this).stop().animate({height: "28px"}, 150);
				$('.marker').stop().animate({height: "27px"}, 150);
				$('#newAddress .more').stop().slideUp(100);
			}
		);
	});

