$(document).ready(function(){

  // initializing
  $('.gallery').hide();
  // make email in the header
  var t = $('#header h2').html();
  $('#header h2').html(t.replace(' [ΑΤ] ','@').replace(' [DΟΤ] ', '.'));
  
  // project show/hide
  $('.project h2 a').bind('click', function(){
      // hide all but current
      $('.gallery').not(':eq('+$('.project h2 a').index($(this))+')').hide();
      // toggle current
      $(this).addClass('visited');
      $(this).parent().parent().find('.gallery').toggle();
      return false;
  });
  
  // gallery image zoom
  $('.gallery a').bind('click', function(){
      // swap href and src
      var src = $(this).find('img').attr('src');
      var href = $(this).attr('href');
      $(this).attr('href', src).find('img').attr('src', href);
      return false;
  });
  
});
