﻿function add_li(list, text, idx) {
    var list = document.getElementById(list);
    var li = document.createElement("li");

    li.innerHTML = '<img src=\"' + text + '\" onClick=\"setPreview(' + idx + ');\" />';
    list.appendChild(li);
}

function setPreview(idx) {
    var otherPics = document.getElementById('otherPics');

    while (otherPics.childNodes.length > 0) {
        otherPics.removeChild(otherPics.childNodes[0]);
    }

    for (i = 0; i < CarHighRes.length; i++) {
        if (i != idx) {
            var lnk = document.createElement("li");
            var count = i + 1;
            lnk.innerHTML = '<a href=\"' + CarHighRes[i] + '\" class=\"zoom\" rel=\"lightbox-cars\" title=\"Image ' + count + ' of ' + CarHighRes.length + '\">#</a>';
            otherPics.appendChild(lnk);
        }
    }

    $(imgPreview).css("opacity", "0");
    $(imgPreview).attr('src', CarPreview[idx]);
    $(imgPreview).animate({ "opacity": 1 }, 300, "linear", null);
    
    $(aPreview).attr('href', CarHighRes[idx]);
}

$(function() {
    $("#sortable").sortable({
        update: function(e, ui) {
            //process each image  
            var ids = "";
            $("#sortable").find('li').each(function() {
                if (ids.toString() != "") ids += ",";
                ids += $(this).children(':first').html();
            });
            $("input[id$=lblIds]").val(ids);
        }
    });
    $("#sortable").disableSelection();
});

$(document).ready(function () {
    $("a.zoom").fancybox({
        'overlayOpacity': 0.7,
        'overlayColor': '#FFF'
    });

    var remaining =
            $("#*[id$=pUpload]").find('li').size() -
            $("#sortable").find('li').size();

    var idx = 0;
    $("#*[id$=pUpload]").find('li').each(function () {
        if (idx < remaining)
            $(this).show();
        else
            $(this).hide();

        idx += 1;
    });

    $("strong").each(function () {
        if ($(this).html() == "Wheelersgate Automotives (M) Sdn. Bhd.") {
            $(this).html("Wheelersgate Automotives (M) Sdn. bhd. @ Tun Razak");
        }
    });

    $("a").each(function () {
        if ($(this).html() == "andrewhew@wheelersgate.com") {
            $(this).parent().remove();
        }
    });

    $("*").each(function () {
        if ($(this).children().length == 0) {
            $(this).text($(this).text().replace('03-7727 7218', '03-2693 1133'));
        }
    });

    $("#ctl00_ContentPlaceHolder1_ucSellerInfo_pnlAdmin").html(
        "<h2>Seller's Information</h2>" +
    "<p class='wglogo'>" +
    "    <img src='_img/wglogo.png' alt='Logo' /></p>" +
    "<p>" +
     "   <label>" +
      "      Address :" +
      "  </label>" +
      "  <strong>Wheelersgate Automotives (M) Sdn. Bhd. @ Tun Razak</strong>" +
      "  <br />" +
      "  <br />" +
      "  Lot.22 Jalan Fletcher,<br />" +
      "  Off Jalan Tun Razak<br />" +
      "  53200, Kuala Lumpur, Malaysia." +
    "</p>" +
    "<p style='clear: both;'>" +
    "</p>" +
    "<p>" +
     "   <label>" +
      "      Sales Contact :</label>" +
       " Andrew Hew (012-3187218)" +
       " <br />" +
        "May Lim (012-2331038)" +
       " <br />" +
       " SH Chow (012-2671393)" +
    "</p>" +
    "<p>" +
     "   <label>" +
      "      General Line :</label>03-2693 1133" +
   " </p>" +
    "<p>" +
      "  <label>" +
        "    Fax Line :</label>03-2693 1132" +
   " </p>       "
    );
});
