$().ready(function(){

	$('#toggleProjects>li>a').click(function(){
		
		$('#projectscontainer').show();
		
		if($(this).attr('name') == 'development'){
			$('a[name=completed]').parent().removeClass('here');
			$(this).parent().addClass('here');
			$('#completedprojects').fadeOut(600, function(){
				$('#developmentprojects').fadeIn(600);
			});
		
		} else {
			$('a[name=development]').parent().removeClass('here');
			$(this).parent().addClass('here');
			$('#developmentprojects').fadeOut(600, function(){;
				$('#completedprojects').fadeIn(600);
			})
		}
		
		return false;
		
	});
	
	$('.staff').click(function(){
		$(this).find('.st_bio').toggle(400);
	});
	
	$('.project').click(function(){
		$.fancybox.showActivity();

		$.ajax({
			type		: "POST",
			cache		: false,
			url			: $(this).attr('id'),
			data		: $(this).serializeArray(),
			success: function(data) { 
					$.fancybox(data, 
								{
									'autoScale'				: true,
									'autoDimensions'		: true, 
									'overlayColor'			: '#000',
									'overlayOpacity'		: 0.7
								});
			}
		});

		return false;
		
	});

});
