$(document).ready(function() { 

var current = document.getElementById("portfolio_welcome");
 
 $('#thumb_project1').click(function() {
			$(current).fadeOut(800, function() {	
			$('#full_project1').fadeIn(800);
			current = document.getElementById("full_project1");
			});
			});
 
 
  $('#thumb_project2').click(function() {
			$(current).fadeOut(800, function() {		
			$('#full_project2').fadeIn(800);
			current = document.getElementById("full_project2");
			 });
			
			});

 $('#thumb_project3').click(function() {
			$(current).fadeOut(800, function() {		
			$('#full_project3').fadeIn(800);
			current = document.getElementById("full_project3");
			 });
			
			});
 
 $('#thumb_project4').click(function() {
			$(current).fadeOut(800, function() {	
			$('#full_project4').fadeIn(800);
			current = document.getElementById("full_project4");
			});
			});
 
 
  $('#thumb_project5').click(function() {
			$(current).fadeOut(800, function() {		
			$('#full_project5').fadeIn(800);
			current = document.getElementById("full_project5");
			 });
			
			});

 $('#thumb_project6').click(function() {
			$(current).fadeOut(800, function() {		
			$('#full_project6').fadeIn(800);
			current = document.getElementById("full_project6");
			 });
			
			});

$('#thumb_project7').click(function() {
			$(current).fadeOut(800, function() {	
			$('#full_project7').fadeIn(800);
			current = document.getElementById("full_project7");
			});
			});
 
 
  $('#thumb_project8').click(function() {
			$(current).fadeOut(800, function() {		
			$('#full_project8').fadeIn(800);
			current = document.getElementById("full_project8");
			 });
			
			});

 $('#thumb_project9').click(function() {
			$(current).fadeOut(800, function() {		
			$('#full_project9').fadeIn(800);
			current = document.getElementById("full_project9");
			 });
			
			});






	});


