﻿$(document).ready(function() {
    var targetContent = $('#divProjects');
    targetContent.css('display','none');

    $('#anProjects').click(function() {

        if (targetContent.css('display') == 'none') {
            targetContent.slideDown(300);
        }
        else {
            targetContent.slideUp(300);
        }
    });
});