$(document).ready(function(){
    $("#masthead li a").click(function(){
        $("#identity").prepend("<a class='up' href='#contact'>UP</a>");
        var href = this.hash;
        $.scrollTo( href, 800 );
        return false;
    });
    $(".up").live('click', function(){
        $.scrollTo( "#contact", 800 );
        $(this).remove();
        return false;
    });
    
    $("#portfolioitems li:first .type-projects").show().parent().addClass("active");
    $("#portfolioitems li a.link").click(function(){
        $("#showcase .type-projects").hide();
        $("#portfolioitems li").removeClass("active");
        $(this).parent().addClass("active");
        var link = $(this).parent().attr("class");
        link = link.split(" ");
        var show = "#"+link[0];
        $(show).show();
        return false;
    });    
    
});
