// Copyright © 2011 Aaron Crane.  Some rights reserved.
// See http://aaroncrane.co.uk/about/
$(function(){
    var C = {"2007":[12,10,9,8,5,3,1],"2008":[11,10,9,8,7,5,4,3,2,1],"2006":[10],"2011":[11,10,8,2],"2009":[5,3,2]},
        M = '. January February March April May June July August September October November December'.split(' ');
    $('#archive > ul > li').find('> a').each(function(){
        var a = $(this);
        a.text(a.text().split(' ')[0]).addClass('ix').after(
            ' <a href="' + this.href + '">»</a>');
    }).end().filter(':not(.open)').each(function(){
        var y = $(this).find('.ix').text(), c = C[y];
        if (c) $(this).append('<ul>' + $.map(c, function(x) {
            return '<li>• <a href="/' + y + '/' + (x>9?'':0) + x + '/">' + M[x] + '</a></li>';
        }).join('') + '</ul>');
    }).end().find('.ix').click(function(e){
        e.preventDefault();
        $(this).parent().toggleClass('open');
    });
});

