// JavaScript Document

// forme in obrazci ipd ...

// brezplačno svetovanje in  uvodna forma ...
	$(document).ready(function(){  
        $("form#bsubmit").submit(function() {   
		    
  
		var bime = $('#bime').attr('value');  
        var bemail = $('#bemail').attr('value'); 
		var bsporocilo = $('#bopombe').attr('value'); 
				
		//alert ('x='+bforma)
		// alert("bime="+ bime +"& bemail="+ bemail + "&bspol=" + bspol + "&btelefon="+ btelefon+ "&bsporocilo="+ bsporocilo );
		
		    $.ajax({  
                type: "POST",  
                url: "fscripts/formScripts.php",  
                data: "bime="+ bime +"& bemail="+ bemail + "&bsporocilo="+ bsporocilo,                  

			   	success: function(result){
				res = result;											
				//alert ('t='+res);
				
				if (res=="napaka"){
					// sporočilo o napaki
					$('div.niposlano').hide();
					$('div.napaka').fadeIn(500);
					}
				else if (res=="uspesno"){
					$('div.formOkvir').hide();
					$('div.uspesnosf').fadeIn(500);
					
					}
				else {
					// sporočilo o uspehu ... uspesno
					$('div.napaka').hide();
					$('div.niposlano').fadeIn(500);
					}
				}
				
            });
       return false;  
      
	    });			


});  



