$(document).ready(function(){
	
			$(".lightbox").lightbox({
				fileLoadingImage : './public/plugins/loading.gif',
				fileBottomNavCloseImage : './public/plugins/close1.gif',
			    fitToScreen: true,
			    strings : {
					prevLinkTitle: 'poprzednie zdjęcie',
					nextLinkTitle: 'następne zdjęcie',
					prevLinkText:  '&laquo; Poprzednie',
					nextLinkText:  'Następne &raquo;',
					closeTitle: 'zamknij galerię',
					image: 'Zdjęcie ',
					of: ' z '
				}
		    });
		    
		    $('.centresListParentBox').cycle({ 
			    fx:     'scrollUp', 
			    timeout: 8000, 
			    speed: 2000
			 });
			 
			  $("#contactName").DefaultValue("Imię i nazwisko");
			  $("#contactPhone").DefaultValue("Telefon");
			  $("#contactEmail").DefaultValue("E-mail");
			  $("#contactContent").DefaultValue("Wiadomość");
	
});

		$(window).load(function() {
		  
			$(".leftImagesList img, .rightImagesList img").each(function() {
				 $(this).removeAttr("width");
				 var width = this.width;
				 $(this).parent().next("p").css("width",width);
			});
			
			
		
		});
