
	
      $(document).ready(function() {
       // hides the slickbox as soon as the DOM is ready
        $('#portfoliotwo').hide();
       // toggles the slickbox on clicking the noted link  
        $('.port-two').click(function() {
		  // hide other div if open
		  $(".headline h1").fadeOut(500);
		  $("#timeline").fadeOut(500);
		  $("#about").fadeOut(500);
		  $(".about-wrapper").fadeOut(500);
		  $("#skills").fadeOut(500);
		  $(".skills-wrapper").fadeOut(500);
          $('#portfoliotwo').delay(500).slideDown(3500);
          return false;
        });
		
		 
        $('a.close-port').click(function() {
          $('#portfoliotwo').slideUp(500);
		  $("#timeline").fadeIn(500);
          return false;
        });
      });
