$(document).ready(function () {
    // Let the site know js is happenin'
    $('body').removeClass('nojs');

    // External links with REL
    $('a[rel="external"]').click(function(e) {
        e.preventDefault();
        window.open($(this).attr('href'));
    });
    
    // Logo onclick return home
    $('h1#logo').click(function () {
        window.location = "/";
    });
    
    // Purdy slidy bits
    $('.thumbs-folio li')
        .mouseenter(function() {
            $(this).find('div').stop(true, true).slideDown(200);
        })
        .mouseleave(function() {
            $(this).find('div').stop(true, true).slideUp(200);
        })
    
});