﻿$(document).ready(function() {
    var $div = $('div.menu').empty();
    $div.append($('<img>'       ).attr({src:'frontpage.jpg',width:'100'}
                                ).wrap('<center/>'
                                )
        ).append($('<center>'   ).text('You might be forgiven for mistaking this fellow for a cricket player :-)'
                                )

        ).append($('<br>'       )
        );

    var data =  [['Our Wedding'             ,'http://MillsFialova.com/wedding'  ]
                ,['Joshua'                  ,'http://MillsFialova.com/joshua'   ]
                ,['Prague Cricket Club'     ,'http://www.cricket.cz'            ]
                ,['Cranbourne Cricket Club' ,'http://www.cranbourne.net'        ]
                ,['- Fantasy League'        ,'CricketUK/CCC_Fantasy'            ]
                ,['- Devon 2003'            ,'CricketUK/2003Devon'              ]
                ,['- Prague 2004'           ,'CricketUK/2004Prague'             ]
                ,['- Devon 2004'            ,'CricketUK/2004Devon'              ]
                ,['Read once a week'        ,'Stress.html'                      ]
                ,['Food for thought'        ,'IveLearned.html'                  ]
//                 ,['Popularity'              ,'Popular.html'                     ]
//                 ,['Quotes re MS'            ,'MS/Quotes.html'                   ]
//                 ,['The MS "Switcher";'      ,'MS/Switcher.html'                 ]
//                 ,['Some FreeBSD notes'      ,'FreeBSD.html'                     ]
                ];

    $.each(data, function(x, item) {
        $div.append($('<p>').addClass('menu'
                           ).append($('<a>').text(item[0]
                                           ).attr({href:item[1],target:'_blank'}
                                           )
                                    )
            );
    });
});

