$(document).ready(function(){
    $("#add").click(function(){
        count = window.count;
        count++;
        window.count = count;
        $("#panel").append('<div id="panel' + count +'" >Имя проекта:<br /><input type="text" name="name[]"><br />Ссылка на проект:<br /><input type="text" name="url[]"><br /><a  href="javascript:del(' + count + ')">Удалить проект</a><hr width="180px" align="left"></div>');
    });
    $("#imglist_button").click(function() {
        $("#imglist_panel").append('<input type="hidden" name="idImg[]" value="empty"><input type="file" name="listimg[]"> <a href="#" >Удалить</a><br>');
    });

    $('.indexImg').bg(14);
    alert(1);
});

function del(id) {
    $("#panel"+id).remove();
    $("#q"+id).remove();
}

function delq(id) {
    $("#q"+id).remove();
}

function delCharacteristic(id) {
    var value = $("#idCharacteristic" + id).val();
    if (value != "empty") {
        $(document).ready(function() {
            $("#delete_list").append('<input type="hidden" value="' + value + '" name="delCharacteristic[]">');
        });
    }
    $("#table" + id).remove();
}

function delImg(id) {
    var value = $("#idImg" + id).val();
    if (value != "empty") {
        $(document).ready(function() {
            $("#delete_list").append('<input type="hidden" value="' + value + '" name="delImg[]">');
        });
    }
    $("#img" + id).remove();
}

function addCharacteristic() {
    count = window.count;
    count++;
    window.count = count;
    $("#characteristic_panel").append('<table id="table' + count + '"><tr><td>Наименование</td><td>Индекс сортировки</td><td>Значение</td><td></td></tr><tr><td colspan="4"><input type="hidden" id="idCharacteristic' + count + '" name="idCharacteristic[]" value="empty"></td></tr><tr><td><input name="name[]" type="text" value="" /></td><td><input name="sort_index[]" type="text" value="" /></td><td><input name="def_value[]" type="text" value="" /></td><td><a href="javascript:delCharacteristic(' + count + ')">Удалить</a></td></tr></table>');
}

function addElementCharacteristic() {
    count = window.count;
    count++;
    window.count = count;
    $("#characteristic_element_panel").append('<table id="table' + count + '"><tr><td>Наименование</td><td>Индекс сортировки</td><td>Значение</td><td></td></tr><tr><td colspan="4"><input type="hidden" id="idCharacteristic' + count + '" name="idCharacteristic[]" value="empty"></td></tr><tr><td><input name="name[]" type="text" value="" /></td><td><input name="sort_index[]" type="text" value="" /></td><td><input name="value[]" type="text" value="" /></td><td><a href="javascript:delCharacteristic(' + count + ')">Удалить</a></td></tr></table>');
}

function addImage() {
    countImg = window.countImg;
    countImg++;
    window.countImg = countImg;
    $("#imglist_panel").append('<div id="img' + countImg + '"><input type="hidden" id="idImg' + countImg + '" name="listimg[]" value="empty"><input type="file" name="listimg[]"> <a href="javascript:delImg(' + countImg + ')">Удалить</a><br />Описание: <input type="text" name=desc[]><input type="hidden" id="idDesc' + countImg + '" name="listDesc[]" value="empty"><br /><hr><br></div>');
}

function addImageProduct() {
    countImg = window.countImg;
    countImg++;
    window.countImg = countImg;
    $("#imglist_panel").append('<div id="img' + countImg + '"><input type="hidden" id="idImg' + countImg + '" name="listimg[]" value="empty"><input type="file" name="listimg[]"> <a href="javascript:delImg(' + countImg + ')">Удалить</a><br></div>');
}
