function init(){
	
	

	$('#mask').css({'display': 'none'});
	$('.btn_send').click(function(){
		sendMessage();
	});
	    if($('#gallery_folio').length>0){
			Galleria.loadTheme('/js/galleria/themes/folio/galleria.folio.min.js');
			  $('#gallery_folio').galleria({
				  preload:0,	
				  transition: 'pulse',
				  
				  initialTransition: 'fade',
				    imageCrop: false,
				    _webkitCursor: true,
				    // Animates the thumnails
				    _animate: true,
				    
				    easing: 'galleriaOut',
				    fullscreenDoubleTap: true, 		

			        width: 720,
			        height:1000
			       
			   }
		
			  );
		}
}

window.onload = init;
function sendMessage(){
	$.post('/main/send-message',
			{
			name: $('#name').val(),
			firm: $('#firm').val(),
			email: $('#email').val(),
			tel: $('#tel').val(),
			message:$('#message').val()
		},
			function(data)
			{
				if (data != '1')
				{
					$('#mail_error').show('slow');
					$('#mail_error').html(data);
				}
				else{
					$('#mail_sucess').html('Twoja wiadmość została wysłana. Nasz pracownik skontaktuję się z Tobą w ciągu 48 godzin.');
					$('.contact_form').remove();
				}
					
			}
			
	)
	
}

