function isValidEmailAddress(emailAddress) {
var pattern = new RegExp(/^(("[\w-\s]+")|([\w-]+(?:\.[\w-]+)*)|("[\w-\s]+")([\w-]+(?:\.[\w-]+)*))(@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$)|(@\[?((25[0-5]\.|2[0-4][0-9]\.|1[0-9]{2}\.|[0-9]{1,2}\.))((25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\.){2}(25[0-5]|2[0-4][0-9]|1[0-9]{2}|[0-9]{1,2})\]?$)/i);
return pattern.test(emailAddress);
}


//alert(isValidEmailAddress('aaa@o2.pl'));

function email_validation()
{
    return true;
    if (isValidEmailAddress(document.getElementById('mail').value)==false)
    {
        alert('Mail niepoprawny')
        return false;
    }
    return true;
}





function spr_form_prestige() {

	 ok=false;

	 
	   if (document.prestige_sign_in.okres.value == '') { alert('Brak danych'); document.prestige_sign_in.okres.focus(); }
	   else if (document.prestige_sign_in.zestaw.value == '') { alert('Brak danych'); document.prestige_sign_in.zestaw.focus(); }
	   else if (document.prestige_sign_in.platnosc.value == '') { alert('Brak danych'); document.prestige_sign_in.platnosc.focus(); }
	   else if (document.prestige_sign_in.imie.value == '') { alert('Brak danych'); document.prestige_sign_in.imie.focus(); }
	   else if (document.prestige_sign_in.nazwisko.value == '') { alert('Brak danych'); document.prestige_sign_in.nazwisko.focus(); }
	   else if (document.prestige_sign_in.rok.value == '') { alert('Brak danych'); document.prestige_sign_in.rok.focus(); }
	   else if (document.prestige_sign_in.miesiac.value == '') { alert('Brak danych'); document.prestige_sign_in.miesiac.focus(); }
	   else if (document.prestige_sign_in.dzien.value == '') { alert('Brak danych'); document.prestige_sign_in.dzien.focus(); }
	   else if (document.prestige_sign_in.email.value == '') { alert('Brak danych'); document.prestige_sign_in.email.focus(); }
	   else if (document.prestige_sign_in.telefon.value == '') { alert('Brak danych'); document.prestige_sign_in.telefon.focus(); }
	   else if (document.prestige_sign_in.ulica.value == '') { alert('Brak danych'); document.prestige_sign_in.ulica.focus(); }
	   else if (document.prestige_sign_in.miasto.value == '') { alert('Brak danych'); document.prestige_sign_in.miasto.focus(); }
	   else if (document.prestige_sign_in.kod.value == '') { alert('Brak danych'); document.prestige_sign_in.kod.focus(); }
	 else if(!document.getElementById('zgoda').checked){ alert('Musisz wyrazić zgodę na przetwarzanie danych osobowych!'); document.prestige_sign_in.zgoda.focus(); }
	  else { ok=true; wcisnieto=1; setTimeout('wcisnietoprestige_sign_in=0',25000); }
	  return ok;
	}




$(window).load(function() {
	
	$('#searcher').focus(function()
	{
		if ($(this).val()=='szukaj...')
		{
			$(this).val('');
		}  
	});

	$('#searcher').focusout(function()
			{
				if($(this).val()=='')
				{
 					$(this).val('szukaj...');
		
					
				}
				
			});

	
	$('#delivery').change(function(){
		var x=$(this).val();
		if (x=='same')
			$('#delivery_core').slideUp();
		else
			$('#delivery_core').slideDown();
			
	});
	
	
    $('#slider').nivoSlider();
    var width=720-$('.nivo-controlNav').width();
    $('.nivo-controlNav').css('left',width); 
    $('.nivo-controlNav a').html('');
    
    
    $('.prestige_sign_in_box_trigger').click(function(){
    	$(this).parent().find('.prestige_sign_in_box').slideToggle();
    });
    
    $('#prestige_sign_in').submit(function(){
    

    return spr_form_prestige();
    })
    
});












