﻿$(document).ready(function () {

    $('section.p-content').css('display', 'none');

    $('section.p-content').fadeIn(1250);

    $('a.transition').click(function (event) {
        event.preventDefault();
        linkLocation = this.href;
        $('section.p-content').fadeOut(1250, redirectPage);
    });

    function redirectPage() {
        window.location = linkLocation;
    }

});

