$(document).ready(function() {
    $('div.work:odd').addClass('right');
    $('div.work a').click(function() {
        if ($(this).attr("href") != "#") {
            window.open($(this).attr("href"));
            return false;    
        } else {
            return false;
        }
    });
    
    $('div.hresume p.summary a').click(function() {
        var tooltip = $(this).parent('p').next('div.tooltip');
        $('div.tooltip:visible').fadeOut('slow');
        tooltip.show('slow');
        tooltip.click(function() {
            $(this).fadeOut("slow");
        })
        return false;
    });
})
