	$(document).ready(function() { /* This is basic - uses default settings */ 
	
	$('#diensten').innerfade({ speed: 'slow', timeout: 6000, type: 'sequence', containerheight: '200px' });
	$('#portfolio').innerfade({ speed: 'slow', timeout: 7000, type: 'sequence', containerheight: '200px' });
	
	});
function initMenu() {
  $('#portfolio_items ul').hide();
  $('#portfolio_items ul:first').show();
  $('#portfolio_items li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#portfolio_items ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }
$(document).ready(function() {initMenu();});

