$(document).ready(function(){
    $('.menu-nav-container a[href="#"]').click(function(){
    $(this).toggleClass('active');
    $(this).next().next().toggle();
     return false;
   });

	$("div.foo").carousel();

 });
