/* 
Compiled from and with inspiration from http://inkwellideas.com/?page_id=8 and http://www.roleplayingtips.com/readissue.php?number=40
*/

var bigListOfQuirks = [
'Picks their nose',
'One eyebrow raises when puzzled',
'Skin tone is darker/ lighter than norm',
'Always wears a certain colour',
'Speaks slowly or very fast',
'Bad flatulence',
'Obsessively neat or clean',
'Wrings their hands',
'Shifts held objects from hand to hand',
'Cannot stand still',
'Obsessed with something',
'Gossips',
'Toys with their hair',
'Chews their nails when nervous',
'Cracks their knuckles',
'Never wears ties',
'Chews their lips',
'Chews gum',
'Really odd laugh',
'Rocks their weight from foot to foot',
'Never makes eye contact with anyone',
'Has an annoying voice',
'Has a strange accent',
'Has a strange writing style',
'Has a signature phrase',
'Stares at whoever they are listening to',
'Tattoo in an obvious place',
'Tattoo in an inobvious place, but it is an odd one',
'A number of piercings',
'Wears a culturally specific item of clothing at all times',
'Treats specific inanimate objects as if they were alive',
'Drawn to cats',
'Does not eat certain common foods for some reason',
'Naps in the afternoon',
'Has a particular superstition they cannot be disuaded from',
'Is larger or smaller than normal people',
'Plays with an item of luck (cards/ dice)',
'Obsesses over a certain non-current time period',
'Hums tunelessly',
'Obsessed with famous person'
];

function gimmeRandomQuirk(quirkdiv) {
	document.getElementById(quirkdiv).innerHTML = bigListOfQuirks[Math.floor(Math.random()*bigListOfQuirks.length)];
}