// JavaScript Document

 $(document).ready(function() {
            $("#design-content").css("display", "none");
			$("#dev-content").css("display", "none");
			$("#news-content").css("display", "none");
			$("#bio-content").css("display", "none");
    });
	
	$(function () {
		$("#design").click(function() {
			$("#design-content").fadeIn(1000);
		});
		$("#home").click(function() {
			$("#design-content").fadeOut(500);
		});
		$("#design-close").click(function() {
			$("#design-content").fadeOut(500);
		});			
});

$(function () {
		$("#dev").click(function() {
			$("#dev-content").fadeIn(1000);
		});
		$("#home").click(function() {
			$("#dev-content").fadeOut(500);
		});	
		$("#dev-close").click(function() {
			$("#dev-content").fadeOut(500);
		});		
});

$(function () {
		$("#bio").click(function() {
			$("#bio-content").fadeIn(1000);
		});
		$("#home").click(function() {
			$("#bio-content").fadeOut(500);
		});		
});


		

