function doubleIt( n ){
	// Double the value and store locally.
	var result = (n * 2);

	// Return local result.
	return( result );
}