$(document).ready(function()
{
    // switch from shortContent to fullContent
    $("#shortContentMore a").click(function(event){
        event.preventDefault();
        $("#toggleDiv").animate({opacity:'hide'}, 'fast');
        $("#toggleDiv").hide();
        $("#info").animate({opacity:'hide'}, 'fast');
        $("#fullContent").animate({opacity:'show'}, 'slow');
    });

    // switch from fullContent to shortContent
    /*
    $("#fullContent").click(function(event){
        event.preventDefault();
        $("#fullContent").animate({opacity:'hide'}, 'fast');
        $("#fullContent").hide();
        $("#toggleDiv").animate({opacity:'show'}, 'slow');
        $("#info").animate({opacity:'show'}, 'slow');
    });
    */
});
