function picop(url,width,height) {
 window.open(url,'name','height='+height+',width='+width);
}

$(function(){
    $('.img2').hover(function(){
      $(this).children('img').fName().stop().animate({width:"170px",height:"145px"}, 400);
    }, function(){ $(this).children('img').fUName().stop().animate({width:"110px",height:"93px"}, 400); });
  });
  
  $.fn.fName = function ()
  {
    var src = this.attr('src');
    var src = src.replace(/\.jpg/, '.gif');
    this.attr('src', src);
	return this;
  }
   
  $.fn.fUName = function ()
  {
    var src = this.attr('src');
    var src = src.replace(/\.gif/, '.jpg');
    this.attr('src', src);
    return this;
  }
  
  $(function(){
    $('.submit').click(function()
     {
      $("form:first").each(function()
      {
        if( this.mail.value == '' )
        {
            alert( 'Вы не указали свой e-mail!' ); 
            this.mail.focus();
            return false;
        }
        else
        {
          alert( 'Сообщение отправлено!' ); 
          this.submit();
        }
      }
      );
     }
    );
  });
