  $(document).ready(function()  {
    $('div#homepage_random_properties').corner("5px");
    $('div#alpha div#extra_photos img').mouseover(function()  {
        $('div#alpha div#main_photo img:first').attr('src', $(this).attr('src'))
                                               .css('max-height', '225px');
    });
    
    $('div#extended_details table tr:gt(11)').hide();
    $('div#extended_details table tr:eq(11)').after('<tr><td colspan="2">EXPAND ALL FIELDS</td></tr>');
    $('div#extended_details table tr:eq(12)').css('cursor', 'pointer')
                                             .css('text-align', 'right')
                                             .click(function()  {
                                                $(this).slideUp();
                                                $('div#extended_details table tr').show();
                                             });
});

