<cfset objGirls = StructNew() />
<cfset objGirls[ "Samantha" ] = StructCreate(
Name = "Samantha",
Hair = "Brunette",
Hotness = 9.0
) />
<cfset objGirls[ "Niki" ] = StructCreate(
Name = "Niki",
Hair = "Brunette",
Hotness = 8.0
) />
<cfset objGirls[ "Lori" ] = StructCreate(
Name = "Lori",
Hair = "Blonde",
Hotness = 7.0
) />
<cfset objGirls[ "Tamoko" ] = StructCreate(
Name = "Tamoko",
Hair = "Black",
Hotness = 8.0
) />
<cfset objGirls[ "Ashley" ] = StructCreate(
Name = "Ashley",
Hair = "Brunette",
Hotness = 8.0
) />
<cfset objGirls[ "Libby" ] = StructCreate(
Name = "Libby",
Hair = "Brunette",
Hotness = 9.0
) />
<cfset objGirls[ "Christina" ] = StructCreate(
Name = "Christina",
Hair = "Blonde",
Hotness = 9.0
) />