﻿$(document).ready(function() {
    $("#rollupTag").toggle(
        function() {
            $("#rollup").slideDown(200);
        },
        function() {
            $("#rollup").slideUp(150);
        });

    $("#closeIcon").click(
        function() {
            $("#rollupTag").click();
        });

    $('.code').before("<span class='expandCode'>Expand</span>");

    $('.expandCode').toggle(
        function() { $(this).next().animate({ width: "700px" }, 1500); }, 
        function() { $(this).next().animate({ width: "431px" }, 1500); }
    );

});