// User images

$(function(item_id) {
    $('a[@rel*=lightbox]').lightBox(); 
});

$(function() {
    $.listen('mousedown','.upload_detail_img', function() {
        $(this).lightBox(); 
    });
});

function imgDelete(img_id, img_folder_id, img_name) {

     $('.modal_content p span').empty().append(img_name);
     $('#my_img_id').attr('value', img_id);
     $('#my_img_folder_id').attr('value', img_folder_id);
     $('#btn_item_delete_' + img_id).fancybox(
        {
           'frameWidth': 300, 
           'frameHeight': 160,
           'hideOnContentClick': false 
        }
     );                      
}

function highlightUploadFile(item) {
    if(item > 1) {
        var last_item = item - 1;
        // $('#upload_file_' + last_item).css('color', '#333');
        $('#upload_file_' + last_item).remove();  
    }            
        $('#upload_file_' + item).removeClass('icon_file').addClass('icon_file_upload').animate({ color: "orange" }, 1000).animate({ color: "white" }, 1000)
}
