﻿$(function() {

    // stylize our nav buttons on the bottom
    $('div.homestyle li div').each(function() { $(this).aspButton({ CssClass: 'homestyle-link' }); });

    // setup the about this website link functionality
    $('a.aboutlink').click(function() {
        if (!($('div.abouttext').is(':visible'))) {
            $('div.abouttext').show('blind');
        }
    });
    $('a.aboutlinkclose').click(function() {
        $('div.abouttext').hide('blind');
    });

});

