/**
 * Appends an effect on the selected page navigation element
 * 
 * @author Steven Rosato
 */
$(function(){
    $('.navigation li.active').each(function() {
        $(this).hide().fadeIn(2000);
    });
});
