﻿$(document).ready(function() {
	var bat=500; //button animation time
	var et=500; //escaping time
   
   $('#content').fadeOut(0);
   
   $('#content').fadeIn(et*2);
   
			
  
			
   $('.button').click(function(){
  	 $(this).animate( { backgroundColor: 'white', color: 'black'  }, bat);
  	 //$('#content').hide(et);
   });
   
   /*
   $('#b1').click(function(){
   	$(this).animate( { opacity: 1}, et, function() { 
   		//window.location="onas.php";
   	});	
   });
   
   $('#b2').click(function(){
   	$(this).animate( { opacity: 1}, et, function() { 
   		//window.location="galeria.php";
   	});	
   });
   
   $('#b4').click(function(){
   	$(this).animate( { opacity: 1}, et, function() { 
   		//window.location="wydarzenia.php";
   	});	
   });
   $('#b5').click(function(){
   	$(this).animate( { opacity: 1}, et, function() { 
   		//window.location="architekci.php";
   	});	
   });
   $('#b6').click(function(){
   	$(this).animate( { opacity: 1}, et, function() { 
   		//window.location="lokalizacja.php";
   	});	
   });
   
   $('#b7').click(function(){
   	$(this).animate( { opacity: 1}, et, function() { 
   		//window.location="kontakt.php";
   	});	
   });
   */
   
   //Powrót na główną strone
   $('#logo').click(function(){
   	$('#content').fadeOut(et);
   	$(this).animate( { opacity: 1}, et, function() { 
   		window.location="index.php";	
   	});	
   	
   });
   
   //animatory myszkonajechaczy
   $('.button').mouseenter(function(){
  	 $(this).animate( { backgroundColor: '#222'}, bat);
   });
   
   
   
   $('.button').mouseleave(function(){
   	$(this).animate( { backgroundColor: 'black', color: 'white' }, bat);
   });
   //slider dla galerii
   if(window.location.pathname=="/galeria.php"){
   		$('#s3slider').s3Slider({
      		timeOut: 3000
   		});
   		
   }
   
   if(window.location.pathname=="/kontakt.php"){
   		$('#przycisk_formularz').click(function(){
   			$('#formularz_container').show(1000);
   			$('#zwin_formularz').show(1000);
   			
   		});
   		
   		$('#reset').click(function(){
   			document.getElementById('name').value='';
			document.getElementById('email').value='';
			document.getElementById('phone').value='';
			document.getElementById('message').value='';
   			
   		});
   		
		$('#zwin_formularz').click(function(){ 
			document.getElementById('name').value='';
			document.getElementById('email').value='';
			document.getElementById('phone').value='';
			document.getElementById('message').value='';
			$('#formularz_container').hide(1000);
			$(this).hide(1000);
		});
   }
   
   if(window.location.pathname=="/wydarzenia2.php"  || window.location.pathname=="/wydarzenia3.php"){
   		$('#przycisk_formularz').click(function(){
   			$('#formularz_container').show(1000);
   			$('#zwin_formularz').show(1000);
   			
   		});
   		
   		
		$('#zwin_formularz').click(function(){ 
			$('#formularz_container').hide(1000);
			$(this).hide(1000);
		});
	}
	

});//of document.ready();
