$(document).ready(function() {
    
    $('p.contact').click(function() {
  	    $('div.contactinfo').slideToggle('fast');
    });

    $("#projects").jCarouselLite({
        btnNext: "#next",
        btnPrev: "#prev",
        vertical: true,
        visible: 5,
        circular: true
    });


    $("a[@rel~='ext']").click(function() {
    window.open($(this).attr("href"));
    return false;
    });
    
    $('#projects a').tooltip({
        delay: 0,
        fade: 250
    });
    
});