function validate(address) {
   var reg = /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/;
   if(reg.test(address) == false) {
      return false;
   }
   return true;
}
var oldhtml;
function showValues() {
    return $("#form1").serialize();
 
  }

function  Send() {
    if ($("#textfield").attr("value") && validate($("#textfield").attr("value")) ) {
        if ( $("#textarea").attr("value")) {
        
        var ta=$("#textarea").attr("value");
        var tf=$("#textfield").attr("value");
            
        $("#form1").html("<div style='text-align: center; width:100%;'><img src='/Images/loading.gif' border='0' align='center' /><br><br> Ждите...<br><br></div>");
         
         $.post('/ajax/sendmail.php', { textarea: ta, textfield:  tf}, 
         function(xml){  
             alert($(xml).text());
             $("#form1").html(oldhtml);
             $("#sendform1").click(Send);
                     }, 'text');            
        }
        else {
            alert ('введите Ваш вопрос');   
        }
    }
    else {
        alert ('введите коректный e-mail');   
    }

}


$(document).ready(function() {

$('a[rel$="lightbox"]').lightBox();




    oldhtml=$("#form1").attr("innerHTML");
    $("#sendform1").click(Send);
    
    
    $("#pictr").click(function () {
        if (tekpic<pictures.length-1) {
            $(".pictures_dot:eq("+tekpic+")").attr("src","/Images/navigat_dot_gray.gif");
            tekpic = tekpic+1;   
            $(".pictures_dot:eq("+tekpic+")").attr("src","/Images/navigat_dot_orange.gif");
         $("#itimage").replaceWith(pictures[tekpic]);
 
        }
  
    });
    $("#pictl").click(function () {
        if (tekpic>0) {
            $(".pictures_dot:eq("+tekpic+")").attr("src","/Images/navigat_dot_gray.gif");
            tekpic = tekpic-1;   
            $(".pictures_dot:eq("+tekpic+")").attr("src","/Images/navigat_dot_orange.gif");
         $("#itimage").replaceWith(pictures[tekpic]);
 
        }
  
    });
    
    
    
});
