//Przełączenie zakładek
$(document).ready (function () {
	$('.subpage').fadeOut (0); //Ukrywanie treści
	var currentSubpage = 'index';
	$('#index').fadeIn (500); //Ładowanie strony głównej

	$('#header a').click (function () {
		var href = $(this).attr ('href');
		if (currentSubpage != href) {
			$('#' + currentSubpage).fadeOut (0);
			$('#' + href).fadeIn(500);
			$('#header a').removeClass ('active');
			$(this).addClass ('active');
			currentSubpage = href;
		}
		return false;
	});
});

//Wysyłanie maila za pomocą Ajax
function send () {

	var name = $('[name=name]').attr ('value');
	var title = $('[name=title]').attr ('value');
	var mail = $('[name=mail]').attr ('value');
	var content = document.getElementById ('text').value;

	if (name != '' && title != '' && mail != '' && content != '') {

		$.ajax ({
			type: 'POST',
			url: 'kontakt.php',
			beforeSend: function(){
				$('#load').show(0);
				$('form input').attr ('disabled', 'true');
				$('form button').attr ('disabled', 'true');
				document.getElementById ('text').disabled = 'true';
			},
			data: 'name=' + name + '&title=' + title + '&mail=' + mail + '&content=' + content,
			success: function (data){
				$('#load').hide(0);
				$('form input').attr ('value', '');
				document.getElementById ('text').value = '';
				$('form input').attr ('disabled', '');
				$('form button').attr ('disabled', '');
				document.getElementById ('text').disabled = '';
				$('#info').html (data).fadeIn (1000);
				setTimeout (function () {$('#info').fadoOut (1000);}, 5000);
			}
		});
	}
	else
		$('#info').html ('<span class="error">Należy wypełnić wszystkie pola.</span>'). fadeIn (1000);
}
