$("#slider").prepend('<p class="loading">Loading...<br /><img src="/img/loading.gif" alt="" / ></p>')

$(function(){    // promo
    $("#topimg").find("p .loading").remove();
    $("#topimg .tab1").addClass("here");
    var tab = "#topimg .tab";
    var arr = new Array(6);
    $.each(arr,function(i){
        var leftPixcels = -$("#slider").width()*(i-1);
        $(tab+i).click(function(){
            $("#slideSet").animate(
            {"left":leftPixcels+"px"},600);
            $(this).parent().find("li.here").removeClass("here");
            $(this).addClass("here");
        });
    });

});

