// JavaScript Document

$("#slider").prepend('<p class="Loading">Loading...<br /><img src="img/ajax-loader.gif" alt="Loading..." / ></p>')

$(function(){

    // promo
    $("#Promotion").find("p .Loading").remove();
    $("#Promotion .SlideTab1").addClass("Current");
    var tab = "#Promotion .SlideTab";
    var arr = new Array(5);
    $.each(arr,function(i){
        var leftPixcels = -$("#slider").width()*(i-1);
        $(tab+i).click(function(){
            $("#sliderWrap").animate(
            {"left":leftPixcels+"px"},600);
            $(this).parent().find("li.Current").removeClass("Current");
            $(this).addClass("Current");
        });
    });

});

