$(document).ready(function(){
	
	$('.foto a').lightBox();
	$('.foto2 a').lightBox();

	$(".cal").hover(function() {
		$(this).next("em").animate({opacity: "show", top: "-85"}, "slow");
	}, function() {
		$(this).next("em").animate({opacity: "hide", top: "-95"}, "fast");
	});
	
	$('#form1 div#blad').hide();
	$('#form1').bind('submit', function() {
	
		var ok = true;
		
		$(':input', this).each(function(){
			if($(this).val()==''){
				$(this).addClass('zle');
				ok = false;
			}else{
				$(this).removeClass('zle');
            }
        });
		if($("#_zgoda:checked").val()!='y') {
			ok = false;
		}
		
		if(!ok){
			$('#form1 div#blad').show();
			$('#ok').hide();
			return false;
		} 
	});
	
	$('#form2 div#blad').hide();
	$('#form2').bind('submit', function() {
	
		var ok = true;
		
		$(':input', this).each(function(){
			if($(this).val()==''){
				$(this).addClass('zle');
				ok = false;
			}else{
				$(this).removeClass('zle');
            }
        });
		if($("#_zgoda:checked").val()!='y') {
			ok = false;
		}
		
		if(!ok){
			$('#form2 div#blad').show();
			$('#ok').hide();
			return false;
		} 
	});
	
	$('#form3 div#blad').hide();	
	$('#form3').bind('submit', function() {
	
		var ok = true;
		
		$(':input', this).each(function(){
			if($(this).val()==''){
				$(this).addClass('zle');
				ok = false;
			}else{
				$(this).removeClass('zle');
            }
        });
		if($("#_zgoda:checked").val()!='y') {
			ok = false;
		}
		
		if(!ok){
			$('#form3 div#blad').show();
			$('#ok').hide();
			return false;
		} 
	});
	
	//
	
	var loc = location.host;
	
	$('#rejestracja').change(function(){
		if($(this).val()=='punkt konsultacyjny i coachingowy') {
			location.href = 'http://' + loc + '/strony/wyswietl/punkt#formularz';
		}
		if($(this).val()=='seminaria informacyjne') {
			location.href = 'http://' + loc + '/strony/wyswietl/spotkania#formularz';
		}
		if($(this).val()=='grupy problemowe') {
			location.href = 'http://' + loc + '/strony/wyswietl/grupy#formularz';
		}
	});

});
