/*@cc_on
var doc = document;
eval('var document = doc');
@*/

$(function(){
  $('#upload1').change(function() {
      $(this).upload('incweb/jquery.upload.php?n=1', function(res) {
          //$(res).insertAfter(this);
          if(res == 'error_nofile'){
              alert('ファイルが選択されていません。');
          }else if(res == 'error_ext'){
              alert('拡張子は、（.jpg .gif .png）でご登録願います。');
          }else{
              $("#res1").html('<img src="thumb.php?src=mailform/tmp/'+res+'&wh=100" />');
              $("#shop_file1").val(res);
              $("#cap1").css("display","block");
          }
      }, 'html');
  });

  $('#upload2').change(function() {
      $(this).upload('incweb/jquery.upload.php?n=2', function(res) {
          //$(res).insertAfter(this);
          if(res == 'error_nofile'){
              alert('ファイルが選択されていません。');
          }else if(res == 'error_ext'){
              alert('拡張子は、（.jpg .gif .png）でご登録願います。');
          }else{
              $("#res2").html('<img src="thumb.php?src=mailform/tmp/'+res+'&wh=100" />');
              $("#shop_file2").val(res);
              $("#cap2").css("display","block");
          }
      }, 'html');
  });
});

