/**
* Created by Pascal on 01/12/16.
*/
$(function(){
$('.mobile-navigation .shader').click(function () {
$('.mobile-navigation').removeClass('active');
});
$('.mobile-navigation .bar .toggle-menu').click(function(){
$('.mobile-navigation').toggleClass('active');
});
});
// Add allow animation class to prevent blinking when website opens
$('.mobile-navigation').addClass('allow-animation');