$(document).ready(function(){
$('.dropdown').on('click', function() {
if ($(this).hasClass('open')) {
$(this).children('ul').attr('style', '');
$(this).removeClass('open');
} else {
$(this).children('ul').attr('style', 'display:block;');
$(this).addClass('open');
}
return false;
});
$('.dropdown a').on('click', function() {
window.location = $(this).attr('href');
});
$('li.dropdown > a').attr('style', 'width: 80%;');
$('.menu li').attr('style', 'background: #36404b;');
$('.dropdown li').attr('style', 'background: #36404b;');
$('.dropdown.active').trigger('click');
});