$(document).ready(function() {
$('.menu-main li a.dropdown-toggle').click(function() {
var href = $(this).attr('href');
window.location.href = href;
})
});
$(window).bind("load resize", function(){
if(jQuery(window).width()<992){
jQuery(document).ready(function( $ ) {
$("#nav-mobile").mmenu({
"extensions": [
"position-back",
"position-right"
]
});
});
}
});