var next = 1;

$(function() {
    $('#promoswitch').click(switch_promo);
    setInterval('switch_promo()', 5000);
});

function switch_promo() {
    $('#leftpromos a').hide();
    $('#leftpromos a:eq('+next+')').show();
    $("#promoswitch").css('background-position', (next*-86)+'px 0');
    next = (next + 1) % 3;
}

