$(function(){
	/* clickable login box home page */
	$('.completed a').click(function(){
		$('.Proworkarea').fadeOut('slow');
		$('.completeworkarea').fadeIn('slow');
	});
	$('.upcoming a').click(function(){
		$('.Proworkarea').fadeOut('slow');
		$('.upcomingworkarea').fadeIn('slow');
	});
	$('.ongoing a').click(function(){
		$('.Proworkarea').fadeOut('slow');
		$('.ongoingworkarea').fadeIn('slow');
	});
	
	$('.closebut a').click(function(){
		$('.Proworkarea').fadeIn('slow');
		$('.completeworkarea').fadeOut('slow');
		$('.upcomingworkarea').fadeOut('slow');
		$('.ongoingworkarea').fadeOut('slow');
	});
	$('.FParea a.closeComp').click(function(){
		$(this).parent().fadeOut('slow');
	});
	
	$('.Fplanarea a').click(function(){
		$('.FParea').fadeIn('slow');
	});
	$('.areathank a.closeComp').click(function(){
		$(this).parent().fadeOut('fast');
	});
	
	$('.thanksarea a').click(function(){
		$('.areathank').fadeIn('fast');
	});
	
	$('.arealogin a.closeComp').click(function(){
		$(this).parent().fadeOut('fast');
	});
		
	$('.loginarea a').click(function(){
		$('.arealogin').fadeIn('fast');
		
	});

	
});


