// ==========================
// = script portfolio pages =
// ==========================

// Project details
$(document).ready(function(){
  $( '#info div:not(:first)' ).hide();
  
  $('#info-navigation li').click(function(e) {
    $('#info div').hide();
    $('#info-navigation .current').removeClass("current");
    $(this).addClass('current');
    
    var clicked = $(this).find('a:first').attr('href');
    $('#info ' + clicked).fadeIn('slow');
    e.preventDefault();
  }).eq(0).addClass('current');

//select parent in Portfolio - active ul.level-2 remain open
$('#tree-navigation li.selected').closest('li.level-1').addClass('parent-selected');

//show and hide ul.level-2 
$('ul.portfolio li.level-1:not(:has(>.parent-selected))').children('ul.level-2').addClass('hidden');
$('ul.portfolio > li.level-1').click(function(){
	if ($(this).children('ul.level-2').hasClass('hidden')) {
		$(this).children('ul.level-2').removeClass('hidden');
	}	else {
		$(this).children('ul.level-2').addClass('hidden');
	}
});


// ==============================================
// = this was the slide show on the homepage but's now replaced =
// ==============================================
/* 	slideShow();
	function slideShow() {
  var current = $('#photos .show');
  var next = current.next().length ? current.next() : current.parent().children(':first');

  current.hide().removeClass('show');
  next.fadeIn('5000').addClass('show');

  setTimeout(slideShow, 8000);
}
*/

// Die Grille sagt: Ich mag dich sehr, du grosser, dicker Grizzlybär!
});

