// JavaScript Document


$(document).ready(function(){

	$(document).pngFix();
	$(function() {
		$('a.lightBox').lightBox();
	});	

	$('#navigation ol li').click(function() {
		
		var klasa = $(this).attr('class');
		var tytul = $(this).attr('title');
		if(klasa!='active') {
			$('#navigation ol li').removeAttr('class');
			$(this).attr('class', 'active');
			
			$('.subNavigation').hide();
			$('#subnav_'+tytul).slideDown(300);
		}
		
	});

	$('#form_newsletter_mail')
		.click(function() {
			var wartosc = $(this).val();
			if(wartosc=='tu wpisz adres e-mail') {
				$(this).val('');
			}
		})
		.blur(function() {
			var wartosc = $(this).val();
			if(wartosc=='') {
				$(this).val('tu wpisz adres e-mail');
			}
		});
	
});


function showSale(index) {
	
	var index;
	
	$.ajax({
		type: "POST",
		contentType: "application/x-www-form-urlencoded; charset=iso-8859-2",
		dataType: "text",
		url: 'includes/ajax/showSale.php',
		data: {index:index},
		beforeSend: function() { 
			$('#promocjaTygodnia').html('<p style="text-align: center"><img src="images/loading.gif"><br />Trwa ładowanie danych.</p>');
		},
		success: function(result) {
			$('#promocjaTygodnia').html(result);
		}
	});	

}
	
function checkNewsletter() {

	var form_newsletter_mail = $('#form_newsletter_mail').val();
	var re = new RegExp('^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@[a-zA-Z0-9-]+(\.[a-zA-Z0-9-]+)*(\.[a-zA-Z]{2,3})$');
	if(!form_newsletter_mail.match(re)) {		
		alert('Nieprawidłowa forma adresu e-mail.');
		return false;
	}			

	return true;	
	
}
