$(document).ready(function(){
	  	if($('ul#portfolio')){
			$('ul#portfolio').innerfade({
				speed: 1000,
				timeout: 5000,
				type: 'sequence',
				containerheight: '180px'
			});
		}

	  	$('.menu li').hover(function() {
			$(this).animate({
				opacity: 100
			}, 0);
		}, function() {
		  if(!$(this).hasClass('active')){
			$(this).animate({
				opacity: 0.8
			}, 0);
		  }
		});

	
	$('.submenu li').hover(function() {
            $(this).animate({
                opacity: 100
            }, 0);
        }, function() {
          if(!$(this).hasClass('current-menu-item')){
            $(this).animate({
                opacity: 0.9
            }, 0);
          }
        });
});
