/***************************************
 * (c)ウェブシステムズ
 * http://www.websystems.jp/
 ***************************************/

$(function(){
    $('#cart_in').click(function(){
        $('#fm').submit();
		return false;
    });
	$('#fm').submit(function(){
		$('#popholder').html('');
		$(this).ajaxSubmit({
			target: $('#popholder'),
			resetForm:true
		});
		return false;
	});
    $('.sys-button-02').each(function(){
        $(this).click(function(){
	        var id = $(this).attr('id').split('_').pop();
			var count = $('input[@name="count"]',$('#fm_'+id)).val();
			if(count <= 0 || count.match(/[^0-9]/)){
				alert('数量が正しくありません。');
			}else{
	            if(confirm('数量を変更します。よろしいですか？')){
	                $('#fm_'+id+' #act_'+id).val('edit');
	                $('#fm_'+id).submit();
	            }
			}
			return false;
        });
    });
    $('.sys-button-03').each(function(){
        $(this).click(function(){
            if(confirm('カートから削除します。よろしいですか？')){
                var id = $(this).attr('id').split('_').pop();
                $('#fm_'+id+' #act_'+id).val('del');
                $('#fm_'+id).submit();
            }
			return false;
        });
    });

	// 次へリンク
    $('a#sbm').click(function(){
        $('#afm').submit();
		return false;
    });
});
