$(document).ready(function(){
	$("#menu-nav a[href='#']").click(function(event){
     $(this).next("ul.sub-menu").toggle();
     return false;
   });   
          
   $(".thumbs a").click(function(event){
   $('.thumbs a img').css({ opacity: 0.67 });
   	$(this).find('img').css({ opacity: 1 });
   	var kebab = $(this).attr("href");
     $(".image-wrapper").find("img").fadeOut(200, function() {
	$(this).attr({"src":kebab});
	$(this).fadeIn(200);
	});
     return false;
   }); 
    
});
