// JavaScript Document
function about() {
	//Set the about background to transparent
	$('#about').css({opacity: 0.0});

	//Set the opacity to 0 and height to 1px
	$('#about').animate({opacity: 0.0}, { queue:false, duration:0 }).animate({height: '1px'}, { queue:true, duration:300 });	
	
	//Animate the caption, opacity to 0.8 and heigth to 260px, a slide up effect
	$('#about').animate({height: '260px'},300 ).animate({opacity: 0.8},300 );
}
