// Animate the logo so it fits in the topbar.
$('#logo').addClass('open');
// Toggle the menu button to a close button.
- $(this).css('background', 'url(' + media_base_url + 'assets/close.png) 0 0 no-repeat');
+ //$(this).css('background', 'url(' + media_base_url + 'assets/close.png) 0 0 no-repeat');
// Show the menu.
$('#mobilenav').css("display", "block");
} else {
// Animate the logo to its original size.
$('#logo').removeClass('open');
// Toggle the close button to a menu button.
- $(this).css('background', 'url(' + media_base_url + 'assets/menu.png) 0 0 no-repeat');
+ //$(this).css('background', 'url(' + media_base_url + 'assets/menu.png) 0 0 no-repeat');
// Show the menu.
//$('#mobilenav').css("display", "none");
}