Your browser lacks required capabilities. Please upgrade it or switch to another to continue.
Loading…
<div class="inventoryBox"><span>Inventory</span>
<<if visited("Home") == 1>>
<div class="SpaceText"> 0/35 units used</div>
<<else >>
<<nobr>>
/*loop through inventory, printing items and new lines*/
/* logic for placing maximum limit on boxes*/
/*print units used*/
<<if $boxSpace gt 35>>
/* remove that weight from the box space*/
<<set $boxSpace -= $objects[$currObjIndex].weight>>
<<set $noSpace = true>>
/* remove it from the inventory*/
<<set $inventory.delete($currObject)>>
/*delete last thing added to the list*/
/*<<set $inventory.deleteAt($inventory.length-1)>>*/
<<set $objects[$currObjIndex].packed = false>>
<</if>>
<</nobr>>
<<for _i to 0; _i lt $inventory.length; _i++>>
<<print $inventory[_i]>>
<</for>>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
<</if>>
</div>
<div class="homeText"> You're alone at your place packing before the big move. Once you hit the road tomorrow, there's no looking back!
/* tell user they already packed it, fade it out ? */
<<if visited("Home") > 1>>
<<if $objects[$currObjIndex].count > 1>>
Already packed that!
<<set $objects[$currObjIndex].count -=1 >>
<<set $inventory.deleteAt($inventory.length-1)>>
<<set $boxSpace -= $objects[$currObjIndex].weight>>
<</if>>
<<if $noSpace == true>>
<<print "insufficient space">>
<<set $noSpace = false>>
<</if>>
<</if>>
</div>
<div class="doneBtn buttons">[img[https://github.com/tblunt18/MemoryLane/raw/master/done.png][End]]</div>
/*Figure out how to put text in div and style appropriately, use class tags, css and js if needed*/
<div class="grid-wrapper">
<div class="itemIcons">[img[Banjo|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/banjo.png][Banjo]]</div>
<div class="itemIcons">[img[BoxLights|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/boxLights.png][BoxLights]]</div>
<div class="itemIcons">[img[CoconutOil|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/coconutOil.png][CoconutOil]]</div>
<div class="itemIcons">[img[CollegeLetter|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/collegeAcceptanceLetter.png][CollegeLetter]]</div>
<div class="itemIcons">[img[CompactMiror|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/compactMirror.png][CompactMirror]]</div>
<div class="itemIcons">[img[ConcertPoster|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/concertPoster.png][ConcertPoster]]</div>
<div class="itemIcons">[img[Sneakers|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/converseSneakers.png][Sneakers]]</div>
<div class="itemIcons">[img[Camera|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/dslrCamera.png][Camera]]</div>
<div class="itemIcons">[img[FavBook|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/favoriteBook.png][FavBook]]</div>
<div class="itemIcons">[img[FrenchPress|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/frenchPress.png][FrenchPress]]</div>
<div class="itemIcons">[img[GourmetPopcorn|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/gourmetPopcorn.png][GourmetPopcorn]]</div>
<div class="itemIcons">[img[HeirloomSilverware|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/heirloomSilverware.png][HeirloomSilverware]]</div>
<div class="itemIcons">[img[Yearbook|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/highschoolYearbook.png][Yearbook]]</div>
<div class="itemIcons">[img[Plant|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/housePlant.png][Plant]]</div>
<div class="itemIcons">[img[KitchenaidMixer|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/kitchenaidMixer.png][KitchenaidMixer]]</div>
<div class="itemIcons">[img[LittleBlackDress|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/littleBlackDress.png][LittleBlackDress]]</div>
<div class="itemIcons">[img[MomentoTshirts|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/momentoTshirts.png][MomentoTshirts]]</div>
<div class="itemIcons">[img[OldNotebooks|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/oldNotebooks.png][OldNotebooks]]</div>
<div class="itemIcons">[img[PromiseRing|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/promiseRing.png][PromiseRing]]</div>
<div class="itemIcons">[img[SoundSystem|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/soundSystem.png][SoundSystem]]</div>
<div class="itemIcons">[img[SpecialBlanket|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/specialBlanket.png][SpecialBlanket]]</div>
<div class="itemIcons">[img[TaxidermyFrog|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/taxidermyFrog.png][TaxidermyFrog]]</div>
<div class="itemIcons">[img[WassilyChair|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/wassilyChair.png][WassilyChair]]</div>
<div class="itemIcons">[img[YogaMat|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/yogaMat.png][YogaMat]]</div>
</div>
/*
<div
style="position: relative; width: 640px; height: 640px; padding: 5px; border: 2px solid grey">
<img
src="https://github.com/tblunt18/MemoryLane/raw/master/objectImages/yogaMat.png"
style="position: absolute; left: 0; top: 0; width: 640px; height: 640px">
<img
src="https://github.com/tblunt18/MemoryLane/raw/master/objectImages/wassilyChair.png"
style="position: absolute; left: 0; top: 0; width: 640px; height: 640px">
<img
src="https://github.com/tblunt18/MemoryLane/raw/master/objectImages/specialBlanket.png"
style="position: absolute; left: 0; top: 0; width: 640px; height: 640px">
</div>
*/
<div id="revealText1">
</div>
<div class="buttons evenMore" onclick="reveal2()">
</div>
<div id="revealText2" class="buttons packBtn leaveBtn packit leaveit" >
</div>
<div id="packBtn" class="buttons packBtn leaveBtn packit leaveit" >
</div>
<div id="leaveBtn" class="buttons packBtn leaveBtn packit leaveit" >
</div>
<div id="unpac" class="unpac"></div>
<div id="home" class="unpac"></div>
<div class="printing"></div>
<<if visited("Home") == 1>>
/*set initial inventory count */
<<set $inventorySpace = 0>>
/* define variables */
<<set $objects = [
{objName:"Banjo", weight: 7, packed:false,count:0,keep:"Turns out, a local bluegrass jam meets on Sunday afternoon right by your new apartment! ", leave:"Maybe the banjo wasn’t ever really your thing. Now a mandolin on the other hand… "},
{objName:"Box Lights", weight:9, packed:false,count:0,keep:"A YouTube star knows the importance of good lighting. Your future is bright!",leave:" Turns out, the natural lighting in your apartment works just fine for your videos!"},
{objName:"Coconut Oil", weight:2, packed:false,count:0,keep:"To your satisfaction, your skin is infinitely moisturized.",leave:"Sadly, you're quite ashy without your coconut oil."},
{objName:"College Letter", weight:1, packed:false,count:0,keep:"You can’t wait to show your kids how awesome you were at their age. Or to show them that dreams really do come true. Whichever.",leave:"Some days you wish you’d held onto that acceptance letter. It would’ve been a good memento to show your kids one day."},
{objName:"Compact Mirror", weight:3, packed:false,count:0,keep:"Granny will always be with you. Her memory guides you still today—and her style too!",leave:"Your incredibly fashionable grandmother will always be with you. You’re sure your sister will take good care of her compact, too."},
{objName:"Poster", weight:6, packed:false,count:0,keep:"You may not live in the same city anymore, but you’re glad you kept your poster around to remind you of all the good times you had there. Isn’t that band coming here soon?",leave:"That concert will always be in your memory, even if the poster won’t be on your wall."},
{objName:"Sneakers", weight:4, packed:false,count:0,keep:"Even on those lazy days, like the ones you had after your exhausting move-in, your leather slip-ons still bring out a bit of edge to your style.",leave:"You gave your Converse one last walk around your block before you left and hey, the sole tore right off. So that made it easy."},
{objName:"Camera", weight:4, packed:false,count:0,keep:"This camera is a symbol of your renewed passion for an old hobby!",leave:"The sunlight hits the block outside your apartment beautifully when you get home from work—you wish you’d kept that camera around."},
{objName:"Book", weight:3, packed:false,count:0,keep:"A good book never gets old, that’s the beauty.",leave:"You ended up eventually buying the e-book version of your favorite. It’s missing your notes but, it gets the job done."},
{objName:"French Press", weight:4, packed:false,count:0,keep:"On your first morning in your new place, there was nothing you wanted more than a good cup of coffee—it tasted like home. ",leave:"There’s a good coffee shop down the street from your new place but it’s not quite the same as your homebrewed espresso."},
{objName:"Popcorn", weight:4, packed:false,count:0,keep:"This last tub of popcorn should hopefully last you until you get your next fix. But if not, at least it won’t be wasted.",leave:"You can’t find your favorite brand of popcorn; it’s tragic."},
{objName:"Silverware", weight:3, packed:false,count:0,keep:"Come to think of it, you’re not even sure the plastic on this silverware is dishwasher safe. It hasn’t killed you yet, though! And it’s good to keep stuff like this in the family. ",leave:"You couldn’t bear to give your granny’s silverware to some vintage shop. So you convinced your folks to just put it back in the drawer it all came from."},
{objName:"Yearbook", weight:5, packed:false,count:0,keep:"You never get tired of going back through these pictures. Re-reading all the notes from friends, some still close, some distant, other gone. You’ll always enjoy the memories.",leave:"You’ve reconnected online with almost everyone important to you from high school anyways. You’ll miss the goofy yearbook pictures, but you’ll always have the memories."},
{objName:"Plant", weight:7, packed:false,count:0,keep:"Protect him. Nourish him. But not too much! Plantee is growing, bringing the outdoors inside.",leave:"You were worried about your plant’s chances on the road this time. But you’ll always remember the confidence he gave you."},
{objName:"Kitchenaid Mixer", weight:6, packed:false,count:0,keep:"Snickerdoodles. Sweet Potato Pie. Chocolate Cake. The holidays will be sweeter than ever this year.",leave:"If you’re really honest with yourself, this winter, you’re going to be wishin’ you were mixin’."},
{objName:"Black Dress", weight:4, packed:false,count:0,keep:"You can’t wait for that first weekend in your new place. Your little black dress is ready to hit the dancefloor.",leave:"New apartment, new look. The loss of your LBD was actually NBD."},
{objName:"T-shirts", weight:5, packed:false,count:0,keep:"You decide to make it a point to visit the University of Washington in the future—if for no other reason than to check out more of their apparently luxuriously comfortable apparel. ",leave:"A comfy t-shirt, you figure, is just a regular t-shirt plus time. So, you’ll get there… eventually."},
{objName:"Notebooks", weight:5, packed:false,count:0,keep:"Someday, when you’re dead and famous, a graduate student will appreciate your commitment to the posterity of these notebooks.",leave:"No old notebooks around means plenty of excuses to buy new notebooks!"},
{objName:"Promise Ring", weight:2, packed:false,count:0,keep:"One of these days, maybe you’ll get to give that ring to someone else.",leave:"You decided it was kind of weird to keep your ex’s ring around after all. You’ve moved on."},
{objName:"Sound System", weight:8, packed:false,count:0,keep:"The acoustics in your new place are better than ever! But you can’t help but wonder if some upgraded tweeters might really make the soundstage sparkle. . .",leave:"The thin walls at your new apartment kind of make you grateful that your old sound system isn’t around. Your neighbors seem like such nice people."},
{objName:"Special Blanket", weight:9, packed:false,count:0,keep:"Every night is warm and toasty.",leave:"You'll have to shop around for a comfy blanket soon."},
{objName:"Taxidermied Frog", weight:4, packed:false,count:0,keep:"Your frog continues to keep as vigilant a watch as ever.",leave:"You sold your frog to a thrift shop that seemed genuinely thrilled to take him off your hands—but he looked kind of sad."},
{objName:"Wassily Chair", weight:10, packed:false,count:0,keep:"Sorry Ikea, this is a grown-up’s house now. Your Marcel Breuer Wassily chair is totally the centerpiece of your new digs.",leave:"You weren’t sure how that chair was going to get to your new place—but you still miss it anyways. Does this make you less of an adult?"},
{objName:"Yoga Mat", weight:6, packed:false,count:0,keep:"You can now start every morning with sun salutations. Namaste.",leave:"A new yoga mat has officially been on your shopping list for a month."},] >>
/*List of items in inventory*/
<<set $inventory = [] >>
/*box space used*/
<<set $boxSpace = 0>>
<<set $actualSpace = 0>>
<<set $currObjIndex = 0>>
<<set $currObject = "">>
<<set $noSpace = false>>
/* debugging purposes */
/*<<print $objects[0].packed>>
<<print "initial set up objects" >>*/
<</if>>
<<if visited("Home") > 1>>
/*<<print "home already visited, print packed value">>*/
/*<<print $objects[0].packed>>*/
/*<<print $inventory>>*/
/*You used <<print $actualSpace>> of 35 units left.*/
<</if>>
<ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[Banjo|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/banjo.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[0].packed=true,$inventory.push("Banjo"),$boxSpace+=$objects[0].weight,$currObject="Banjo",$currObjIndex=0,$objects[0].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[0].packed=false,$inventory.delete("Banjo"),$boxSpace-=$objects[0].weight,$currObject="Banjo",$currObjIndex=0,$objects[0].count-=1]]</div></li>
</ul>
<<if $objects[0].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[0].weight>>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
Your banjo, stately as ever, is nestled on its stand in the corner of your living room.
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div id="revealText1"><<nobr>>
A fine layer of dust has collected underneath its strings. <span id="choice1"> <<link "You can’t quite remember the last time you played it, but that hardly means you never will again">><<replace "#choice1">>You play it as much as you can, but the past few weeks have been so busy<</replace>><</link>></span>. Walking over to it, you brush your fingers along the strings and find that it’s only a little out of tune.<</nobr>>
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<div id="revealText2"><<nobr>>
Although you’ve got plenty to do, you pick the banjo up and sit down on the floor with it. The fingers of your dominant hand naturally curl into a <span id="choice2"> <<link "familiar, relaxed claw">><<replace "#choice2">>steady plucking position<</replace>><</link>></span>. You begin to play an <span id="choice3"> <<link "old folk song">><<replace "#choice3">>gospel tune<</replace>><</link>></span>, humming the tune to its first verse, having forgotten most of the lyrics. The low melody reaches its bittersweet conclusion and you can’t help but think how far you’ve come from your earliest, totally arrhythmic attempts. <</nobr>>
</div>
<div class="printing"></div>
<ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[BoxLights|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/boxLights.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[1].packed=true,$inventory.push("Box Lights"),$boxSpace+=$objects[1].weight,$currObject="Box Lights",$currObjIndex=1,$objects[1].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[1].packed=false,$inventory.delete("Box Lights"),$boxSpace-=$objects[1].weight,$currObject="Box Lights",$currObjIndex=1,$objects[1].count-=1]]</div></li>
</ul>
<<if $objects[1].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[1].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
<<nobr>>
Okay, so you’re an almost-famous YouTuber who specializes in <span id="choice1"> <<link "guiding Newbs through grad school">><<replace "#choice1">> streaming video games<</replace>><</link>></span>! So you know you’ve got to be well-lit for that sort of thing.<</nobr>>
<div id="revealText1">
<<nobr>>YouTube has been a passion of yours for a few years. Although the road to building your YT brand has been bumpy and winding, things are really looking up. With <span id="choice2"> <<link "35k">><<replace "#choice2">> 150k<</replace>><</link>></span> subscribers and counting, you know you’ll be a viral sensation within the next year. And until then, you’ve got the tech to look like one already!<</nobr>>
</div>
<div id="revealText2">
<<nobr>>
These box lights are set up in your studio <span id="choice3"> <<link "(a small second room in your apartment)">><<replace "#choice3">> (it’s just your closet)<</replace>><</link>></span>, but you can’t help but wonder how you’d even move these things. They’re the perfect storm: huge, heavy, expensive, and totally fragile. You think of your fans. You think of your potential fans. And you think of the space you’ll have left over in the back of your car.<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[CoconutOil|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/coconutOil.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[2].packed=true,$inventory.push("Coconut Oil"),$boxSpace+=$objects[2].weight,$currObject="Coconut Oil",$currObjIndex=2,$objects[2].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[2].packed=false,$inventory.delete("Coconut Oil"),$boxSpace-=$objects[2].weight,$currObject="Coconut Oil",$currObjIndex=2,$objects[2].count-=1]]</div></li>
</ul>
<<if $objects[2].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[2].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
The magic oil that keeps your skin glowing and hair growing.
<div id="revealText1">
No really, this oil is the secret to why you're not bald all around. No other oil will do when it comes you. You swim in this stuff, and its marvelous.
</div>
<div id="revealText2">
Fav's Organic Coconut Oil comes at no cheap price. For about $20 a jar, you'd be loco to throw this out!
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[CollegeLetter|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/collegeAcceptanceLetter.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[3].packed=true,$inventory.push("College Letter"),$boxSpace+=$objects[3].weight,$currObject="College Letter",$currObjIndex=3,$objects[3].count+=1]]</div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[3].packed=false,$inventory.delete("College Letter"),$boxSpace-=$objects[3].weight,$currObject="College Letter",$currObjIndex=3,$objects[3].count-=1]]</div></li>
</ul>
<<if $objects[3].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[3].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
You’re going through your envelope of old paperwork when you find your acceptance letter to your what would become your alma mater!
<div id="revealText1"><<nobr>>You only applied to <span id="choice1"><<link "two schools ">><<replace "#choice1">>one school<</replace>><<replace "#choice2">>when you didn’t hear back until after your friends had all received their acceptances,<</replace>><</link>></span> which you had dreamed of attending since childhood. But <span id="choice2">when you were rejected from one,</span>college itself quickly began to seem like a distant fantasy-land that you would never reach. But you held out.<</nobr>></div>
<div id="revealText2">
Agonizing anticipation kept you up for three straight months. Then, just as you were nearing defeat, a huge envelope brandishing your dream school’s logo appears in your mailbox. You were sitting in class when your mom texted you, “It’s here!!” Unable to wait a second longer, you ran out of class to call her, screaming into the phone “Open it! Open it!” And just like that. . . you were in!
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[CompactMiror|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/compactMirror.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[4].packed=true,$inventory.push("Compact Mirror"),$boxSpace+=$objects[4].weight,$currObject="Compact Mirror",$currObjIndex=4,$objects[4].count+=1]]</div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[4].packed=false,$inventory.delete("Compact Mirror"),$boxSpace-=$objects[4].weight,$currObject="Compact Mirror",$currObjIndex=4,$objects[4].count-=1]]</div></li>
</ul>
<<if $objects[4].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[4].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
A glimmering silver compact mirror sits, where it always has, <span id="choice1"> <<link "atop your dresser">><<replace "#choice1">> on your nightstand<</replace>><</link>></span>. You like for it to be one of the first things you see every morning.
<div id="revealText1">
<<nobr>>
She was incredibly stylish, your grandmother. Never wore a pair of sneakers in her life, and would probably consider athleisure a mortal sin. You two were close. You called her <span id="choice2"> <<link "Granny">><<replace "#choice2">>Nanna<</replace>><<replace "#choice3">>Nanna<</replace>><<replace "#choice4">>Nanna<</replace>><</link>></span>. She’s gone now. This was her compact. <</nobr>>
</div>
<div id="revealText2">
<<nobr>>
When you were young, <span id="choice3"> Granny</span> picked you up from school every afternoon. She always dressed so fancy. Casual for her were the days when she wore her patent leather shoes—the ones with the one-inch, square heel. That was <span id="choice4"> Granny</span>. Heels, effortlessly fancy dresses, and magnificent hats. Oh, the hats. Headdresses may be more accurate. Each one, color-coordinated, dramatic, seemed to rest on her head like a crown as she strutted to-and-fro with her perfect posture. This was her compact. And every time you look at it, you remember her style—her grace—her complete and total fabulousness.<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[ConcertPoster|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/concertPoster.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[5].packed=true,$inventory.push("Concert Poster"),$boxSpace+=$objects[5].weight,$currObject="Concert Poster",$currObjIndex=5,$objects[5].count+=1]]</div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[5].packed=false,$inventory.delete("Concert Poster"),$boxSpace-=$objects[5].weight,$currObject="Concert Poster",$currObjIndex=5,$objects[5].count-=1]]</div></li>
</ul>
<<if $objects[5].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[5].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
You see a framed concert poster sitting on the floor, having been somewhat unceremoniously taken down off the wall while you were plastering over nail holes earlier.
<div id="revealText1"><<nobr>>
The poster depicts sort of an abstract <span id="choice1"> <<link "aquatic">><<replace "#choice1">>spacey<</replace>><<replace "#choice2">>Angelic little aliens<</replace>><</link>></span> scene. <span id="choice2">Silvery little fish</span> drift around the interior of the frame, all drawn in a kind of shaky linework that leaves them looking delicate, almost fragile. Down in the corner, in a frantic script, the lead <span id="choice3"> <<link "singer’s scrawny">><<replace "#choice3">>guitarist’s looping<</replace>><<replace "#choice4">>guitarist<</replace>><</link>></span> signature has the same kind of vibe.<</nobr>>
</div>
<div id="revealText2"><<nobr>>
Of course, that show of delicacy couldn’t be further from the truth: you remember regretting that you didn’t bring earplugs before the main act had even started playing. It was the one and only time you were forced to walk up to the bar and ask to buy some, but it was a better use of two dollars than any watery beer you’d ever bought there. You remember staying behind to meet the lead <span id="choice4">singer</span> after the show. He didn’t like to shake hands, but he was kind enough to sign the poster. He said he always liked playing in town, which you hoped he didn’t just say everywhere.<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[Sneakers|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/converseSneakers.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[6].packed=true,$inventory.push("Converse Sneakers"),$boxSpace+=$objects[6].weight,$currObject="Converse Sneakers",$currObjIndex=6,$objects[6].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[6].packed=false,$inventory.delete("Converse Sneakers"),$boxSpace-=$objects[6].weight,$currObject="Converse Sneakers",$currObjIndex=6,$objects[6].count-=1]]</div></li>
</ul>
<<if $objects[6].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[6].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
Over by the front door, you spot your favorite pair of Jack Purcell leather slip-on Converses, black.
<div id="revealText1"><<nobr>>
You’ve worn these shoes every week for five years. And it shows. The outer sole, beneath leather that’s soft like <span id="choice1"> <<link "butter">><<replace "#choice1">>a soft blanket<</replace>><</link>></span>, is worn to the point that you practically feel like you're gliding. But the inner sole <span id="choice2"> <<link "has molded itself perfectly to the contours of your feet">><<replace "#choice2">>has precisely captured the imperfections of your posture<</replace>><</link>></span>, precisely capturing the imperfections of your posture, and allowing your toes to snuggle right into their spots.<</nobr>>
</div>
<div id="revealText2">
With these on your feet, you’ve walked and danced and walked some more. Throw on a pair of blue jeans, a perfectly fitted white tee, and these leather slip-ons. Nothing gets more classic than that. These are the stylings of a badass. And that’s exactly how you feel in them. These aren’t a pair of Converse. They’re your pair of Converse.
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[Camera|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/dslrCamera.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[7].packed=true,$inventory.push("Nikon"),$boxSpace+=$objects[7].weight,$currObject="Nikon",$currObjIndex=7,$objects[7].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[7].packed=false,$inventory.delete("Nikon"),$boxSpace-=$objects[7].weight,$currObject="Nikon",$currObjIndex=7,$objects[7].count-=1]]</div></li>
</ul>
<<if $objects[7].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[7].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
Your Nikon D90 has been sitting there on your bookshelf for a while now, and you walk over to give it a good long look before deciding what to do with it.
<div id="revealText1">
<<nobr>>
<span id="choice1"> <<link "You bought this older model Nikon from a thrift store in the hopes of beginning your photographic journey.">><<replace "#choice1">>Your sister actually gifted you her old Nikon after she upgraded—and you both had high hopes for your future career.<</replace>><<replace "#choice2">>Your sister had said you looked like a natural.<</replace>><</link>></span> It has a good heft to it and it feels perfectly balanced in your grip. <span id="choice2">As soon as you held it in the store, you knew this one would be yours.</span><</nobr>>
</div>
<div id="revealText2">
<<nobr>>
Although most of the time it sits there collecting dust, you’ve never stopped saying to yourself that you’ll dedicate more time to photography some day. Last year, as a New Year’s resolution, you committed to a photo challenge—you lasted for <span id="choice3"> <<link "three months">><<replace "#choice3">>three weeks<</replace>><</link>></span> before quitting. Turning the camera on and navigating to its photo storage, you flip through the photos you took over the course of those days. You think to yourself, pausing on a particularly well-composed <span id="choice4"> <<link "still life of some fruit">><<replace "#choice4">>portrait of your family dog<</replace>><</link>></span>, that you’d really hate to give up on this dream of yours. <</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[FavBook|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/favoriteBook.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[8].packed=true,$inventory.push("Favorite Book"),$boxSpace+=$objects[8].weight,$currObject="Favorite Book",$currObjIndex=8,$objects[8].count+=1]]</div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[8].packed=false,$inventory.delete("Favorite Book"),$boxSpace-=$objects[8].weight,$currObject="Favorite Book",$currObjIndex=8,$objects[8].count-=1]]</div></li>
</ul>
<<if $objects[8].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[8].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
You’ve been tossing books into a donation box for a while now. You wish you could keep them all, but they’re so cumbersome to move with. But this one, this one.
<div id="revealText1">
<<nobr>>
This was the book that introduced you to your favorite <span id="choice1"> <<link "author">><<replace "#choice1">>poet<</replace>><<replace "#choice2">>paperback<</replace>><<replace "#choice3">>the whole book through three times.<</replace>><</link>></span> as an adult. One day, while browsing at the local bookstore, you came across a dashing <span id="choice2">hardcover</span> with an interesting title. It was tucked, almost unnoticeable, into the corner of the shelf. Intrigued, you scooped it up and headed home. You sat down on your bed to read the first few pages, and ended up reading <span id="choice3"> five straight chapters.</span> <</nobr>>
</div>
<div id="revealText2">
Never before had you experienced a novel like this! You tore straight through it by the end of the night. And the next day you went bananas buying e-books by the same author; it was the start of an obsession. As a personal tradition, at least once a year, you make it a point to dust off that first book and give it a read. Each time, you discover new treasures between the bindings of that fraying volume.
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[FrenchPress|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/frenchPress.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[9].packed=true,$inventory.push("Moka Pot Coffee Maker"),$boxSpace+=$objects[9].weight,$currObject="Moka Pot Coffee Maker",$currObjIndex=9,$objects[9].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[9].packed=false,$inventory.delete("Moka Pot Coffee Maker"),$boxSpace-=$objects[9].weight,$currObject="Moka Pot Coffee Maker",$currObjIndex=9,$objects[9].count-=1]]</div></li>
</ul>
<<if $objects[9].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[9].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
You see a small metal coffee maker sitting atop your stove, where you always keep it, ready for action at a moment’s notice.
<div id="revealText1"><<nobr>>
The moka pot boils up into its reservoir just a few sips of dark, concentrated espresso, just the way you first learned how to drink it. An Italian friend once told you that the moka pot was the last great invention of Italian engineering. If so, you think, they really knew how to make an exit from innovation. <span id="choice1"> <<link "Although it doesn’t make the world’s best coffee">><<replace "#choice1">>You don’t care what anybody says about its bitter brew<</replace>><</link>></span>, the moka pot makes exactly the kind you like to wake up to.<</nobr>>
</div>
<div id="revealText2"><<nobr>>
Your father got you into it, of course. It’s quicker to make and drink than a cup of Mr. Coffee—cheaper too—and somewhat less snooty than the french press, in his opinion anyway. Not to mention it’s practically indestructible, provided you <span id="choice2"> <<link "remember to wash it out with some vinegar every now and then">><<replace "#choice2">>don’t sear coffee into the grille by forgetting to put the water in first. Again<</replace>><</link>></span>. You definitely have some reservations about throwing one of these out just to buy another one once you get to your new place.<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[GourmetPopcorn|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/gourmetPopcorn.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[10].packed=true,$inventory.push("Popalicious Popcorn"),$boxSpace+=$objects[10].weight,$currObject="Popalicious Popcorn",$currObjIndex=10,$objects[10].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[10].packed=false,$inventory.delete("Popalicious Popcorn"),$boxSpace-=$objects[10].weight,$currObject="Popalicious Popcorn",$currObjIndex=10,$objects[10].count-=1]]</div></li>
</ul>
<<if $objects[10].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[10].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
<<nobr>>Look, gourmet popcorn is <span id="choice1"> <<link "actually your life.">><<replace "#choice1">>truly your actual, real life.<</replace>><</link>></span><</nobr>>
<div id="revealText1">
Okay, it’s not. But since you buy a tub of it every two weeks, it’s at the very least a serious stable. This snack brings you joy when you’re stressed and focus when you’re studying. Plus, it’s great for Netflix nights. Packing all this stuff feels like it’s been going on for weeks now, but this popcorn has been here for you. You’re even eating some now!
</div>
<div id="revealText2">
<<nobr>>
The thing is, you can’t be sure that your new place is going to be so close to somewhere that carries the good stuff— and there is a difference between it and the rest. It took you weeks to find a store that carried around here, so the thought of missing out on the taste—the sound—of those <span id="choice2"> <<link "perfect,">><<replace "#choice2">>perfect pops<</replace>><</link>></span>. . . is almost unthinkable.<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[HeirloomSilverware|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/heirloomSilverware.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[11].packed=true,$inventory.push("Heirloom Silverware"),$boxSpace+=$objects[11].weight,$currObject="Heirloom Silverware",$currObjIndex=11,$objects[11].count+=1]]</div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[11].packed=false,$inventory.delete("Heirloom Silverware"),$boxSpace-=$objects[11].weight,$currObject="Heirloom Silverware",$currObjIndex=11,$objects[11].count-=1]]</div></li>
</ul>
<<if $objects[11].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[11].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
There is a box by the kitchen full of silverware, old metal with bright red plastic handles on every utensil.
<div id="revealText1">
When you moved into this place, your parents sent these along with you. Before that, they’d sat in a drawer for who knows how long. It was your sister who brought them back up again, when she said she wanted some of your late grandmother’s old silverware. She got the green, and you got the red. It was the better color for sure.
</div>
<div id="revealText2"><<nobr>>
Before they made their way here, the memory of the last time you could remember eating with them is admittedly foggy. You can recall the smell of your grandmother’s cooking—her famous <span id="choice1"> <<link "eggplant">><<replace "#choice1">>gumbo<</replace>><</link>></span>, but not quite the taste. You can remember a few of the conversations that took place around her dinner table, but not as well as you can picture with near perfect clarity the television shows she’d let you stay up and watch past your bedtime. Your favorite was <span id="choice2"> <<link " Gilligan’s Island">><<replace "#choice2">>Tom & Jerry<</replace>><</link>></span>. You’ve been in plenty of thrift stores and you’ve seen mountains of silverware in most of them. Is that really where you’d want these to end up?
<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[Yearbook|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/highschoolYearbook.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[12].packed=true,$inventory.push("High School Yearbook"),$boxSpace+=$objects[12].weight,$currObject="High School Yearbook",$currObjIndex=12,$objects[12].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[12].packed=false,$inventory.delete("High School Yearbook"),$boxSpace-=$objects[12].weight,$currObject="High School Yearbook",$currObjIndex=12,$objects[12].count-=1]]</div></li>
</ul>
<<if $objects[12].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[12].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
Nestled onto the bottom level of your bookshelf is a copy of your high school yearbook. You didn’t know it at the time, but someday you’d fall in love with one of your classmates from way back then.
<div id="revealText1"><<nobr>>
And even besides that, high school was <span id="choice1"> <<link "a great time">><<replace "#choice1">>as good as high school can be<</replace>><</link>></span>. You loved your friends. Many of them are family now. Thinking back, you recall memory after memory of laughter, learning, and joy. You were <span id="choice2"> <<link "hopeful and inspired">><<replace "#choice2">>ready for everything that would come next<</replace>><</link>></span>. The future was ahead of you. And this book reminds you that it still is.<</nobr>>
</div>
<div id="revealText2"><<nobr>>
<span id="choice3"> <<link "“Getting to know you has been a dream.”">><<replace "#choice3">>“Thanks for holding onto that ring for me.”<</replace>><</link>></span> That’s what one of your exes wrote in your yearbook senior year. You didn’t know it then, but the two of you <span id="choice4"> <<link "would end up lasting for years">><<replace "#choice4">>wouldn’t have much longer after that summer<</replace>><<replace "#choice5">>but that’s not necessarily a bad thing.<</replace>><</link>></span>. Young and free-spirited, you were friends. Sometimes intellectual foes. Sometimes a shoulder when life got hard. But there was always laughter. More laughter. And still more laughter. Not everything works out, <span id="choice5">but you learned and grew from the experience. </span><</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[Plant|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/housePlant.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[13].packed=true,$inventory.push("House Plant"),$boxSpace+=$objects[13].weight,$currObject="House Plant",$currObjIndex=13,$objects[13].count+=1]]</div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[13].packed=false,$inventory.delete("House Plant"),$boxSpace-=$objects[13].weight,$currObject="House Plant",$currObjIndex=13,$objects[13].count-=1]]</div></li>
</ul>
<<if $objects[13].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[13].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
<<nobr>>
<span id="choice1"> <<link "Plantee ">><<replace "#choice1">>Stemmy<</replace>><<replace "#choice2">>Stemmy<</replace>><<replace "#choice3">>Stemmy<</replace>><<replace "#choice4">>Stemmy<</replace>><<replace "#choice5">>Stemmy<</replace>><</link>></span> keeps the corner of your living room looking cozy. You named it <span id="choice2">Plantee </span> . It was the first plant of yours that didn’t die.<</nobr>>
<div id="revealText1"><<nobr>>
Let’s face it, although you always wanted to have a garden, you have a black thumb. When you settled into your first apartment, a friend gave you a small plant as a housewarming gift. It was beautiful with thick, waxy leaves. She promised that this one was durable and that anyone could keep it alive. Well, anyone but you could. Six weeks later that plant was totally dead. And so the pattern began. Plant after plant deteriorated beyond the point of salvation. Then there was <span id="choice3">Plantee </span>.<</nobr>>
</div>
<div id="revealText2">
<<nobr>>
You did your own research this time. A low-light plant was what you needed. Your father had given you some sage advice on the matter. You took one from the home improvement store home with you, a structural plant with sturdy leaves. You were ready for one last try. This time, you vowed not to <span id="choice6"> <<link "over-water it">><<replace "#choice6">>not to kill it<</replace>><</link>></span>! Fast-forward through two twelve-hour drives between two cities and four different apartments, and <span id="choice4">Plantee </span> is still alive and well. <span id="choice5">Plantee </span> is how you know you’re home. <</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[KitchenaidMixer|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/kitchenaidMixer.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[14].packed=true,$inventory.push("Kitchenaid Mixer"),$boxSpace+=$objects[14].weight,$currObject="Kitchenaid Mixer",$currObjIndex=14,$objects[14].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[14].packed=false,$inventory.delete("Kitchenaid Mixer"),$boxSpace-=$objects[14].weight,$currObject="Kitchenaid Mixer",$currObjIndex=14,$objects[14].count-=1]]</div></li>
</ul>
<<if $objects[14].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[14].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
Standing proudly atop your kitchen counter: your “I am an adult” KitchenAid mixer. The name fits. This thing is actually a huge help.
<div id="revealText1">
As you grew up, it became harder and harder for your family to find gifts for you. You have unique tastes, after all. And you wanted to live like an adult. But eventually, after dropping plenty of hints, you were rewarded with your very own mixer.
</div>
<div id="revealText2"><<nobr>>
Not red. Not black. Not butter yellow. <span id="choice1"> <<link "Grey.">><<replace "#choice1">>Blue.<</replace>><<replace "#choice2">>Sky Blue.<</replace>><</link>></span> <span id="choice2"> Charcoal Grey.</span> That’s the color. Neutral, but modern. And not too frilly. The perfect accessory to any adult kitchen worth its muster. It’s official. It announces: here is one who has entered a new phase in life, the adult phase. <span id="choice3"> <<link "Snickerdoodle cookies">><<replace "#choice3">>Pound cake<</replace>><</link>></span>. Martha Stewart and Julia Child bring it on. You’re ready.<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[LittleBlackDress|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/littleBlackDress.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[15].packed=true,$inventory.push("Little Black Dress"),$boxSpace+=$objects[15].weight,$currObject="Little Black Dress",$currObjIndex=15,$objects[15].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[15].packed=false,$inventory.delete("Little Black Dress"),$boxSpace-=$objects[15].weight,$currObject="Little Black Dress",$currObjIndex=15,$objects[15].count-=1]]</div></li>
</ul>
<<if $objects[15].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[15].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
You love black. More than half your clothes are black. And on date nights, this little black dress is your go-to. It’s flattering. It’s flexible. It’s forgiving.
<div id="revealText1"><<nobr>>
Take last Friday night, your last in this apartment. <span id="choice1"> <<link "After a long week—">><<replace "#choice1">>After a string of long weeks—<</replace>><</link>></span>you went out for the first time in months. What to wear? You didn’t even have to think about it. You slipped into your LBD, put on <span id="choice2"> <<link "gold earrings">><<replace "#choice2">>your favorite silver bracelet <</replace>><</link>></span> and <span id="choice3"> <<link "red lipstick">><<replace "#choice3">>your best cat eyeshadow<</replace>><</link>></span>, then hit the town.<</nobr>>
</div>
<div id="revealText2">
This dress is there for you when it’s time to party, effortlessly. Its plunging neckline is just-enough sexy and its skater skirt is just-enough playful. With the right accessories you can dress it up, or go the opposite direction with a denim jacket. You can pair it with black shoes or the latest trendy color. And then there are the pockets. Yes! Pockets! Who needs to keep up with a purse? Not you! Not on nights with this little number.
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[MomentoTshirts|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/momentoTshirts.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[16].packed=true,$inventory.push("Momento Tshirts"),$boxSpace+=$objects[16].weight,$currObject="Momento Tshirts",$currObjIndex=16,$objects[16].count+=1]]</div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[16].packed=false,$inventory.delete("Momento Tshirts"),$boxSpace-=$objects[16].weight,$currObject="Momento Tshirts",$currObjIndex=16,$objects[16].count-=1]]</div></li>
</ul>
<<if $objects[16].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[16].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
On top of your bed you see a stack of old, oversized t-shirts—all at various stages of fading from years of washing—waiting, purposefully unpacked, for you to slim their number.
<div id="revealText1">
Flipping through them one after the other lets you feel a kind of soft comfort, as if you were just about to slip into one and head off to an unhurried sleep. Some of them, you think, might even be able to make the jump back over to the set of regular t-shirts. Seriously, you could totally wear some of these in public. Maybe.
</div>
<div id="revealText2"><<nobr>>
This one: <span id="choice2"> <<link "you think it once said “University of Washington”? Although you’re fairly certain no one y0u know ever attended the University of Washington">><<replace "#choice2">>a concert tee from a band you’d prefer not to be associated with anymore<</replace>><</link>></span>. Here’s a concert tee from a band you’d prefer not to be associated with anymore. And you hate this one—a deep, nauseating crimson, full of holes—but your partner insists that it’s absolutely the most comfortable one you own. So many choices. So many soft, soft choices. You think, maybe this one has to be an all or nothing deal.<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[OldNotebooks|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/oldNotebooks.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[17].packed=true,$inventory.push("Old Notebooks"),$boxSpace+=$objects[17].weight,$currObject="Old Notebooks",$currObjIndex=17,$objects[17].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[17].packed=false,$inventory.delete("Old Notebooks"),$boxSpace-=$objects[17].weight,$currObject="Old Notebooks",$currObjIndex=17,$objects[17].count-=1]]</div></li>
</ul>
<<if $objects[17].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[17].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
You find a jumble of old notebooks of various shapes and sizes in a drawer. Some are filled, others are almost empty—but all of them are brimming with memories, or potential.
<div id="revealText1"><<nobr>>
You flip through them one at a time. Composition books containing <span id="choice1"> <<link "arcane scribbles from riveting class discussions">><<replace "#choice1">>messy doodles from sitting through boring lectures<</replace>><</link>></span>. Slim little booklets with stray passwords, email addresses, and anonymous phone numbers. Weekly planners. And detective notebooks, the kind you carry with you everywhere, regularly filled with whatever you needed to keep in mind. Scattered across every one, draft after draft of story ideas and poetry.<</nobr>>
</div>
<div id="revealText2"><<nobr>>
And this one—was this from high school> You can’t believe you still have it. This, you think, might be the first poem you ever actually wrote. It’s awful. Absolutely awful. Beside it are the lyrics you wrote for a song your high school band never got around to finishing. It looks like it was about <span id="choice2"> <<link "black holes in space">><<replace "#choice2">>the Marianas Trench<</replace>><</link>></span>. You wonder what exactly you were going through back then, and happen to notice that apparently you had a physics test on the following Friday. <</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[PromiseRing|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/promiseRing.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[18].packed=true,$inventory.push("Promise Ring"),$boxSpace+=$objects[18].weight,$currObject="Promise Ring",$currObjIndex=18,$objects[18].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[18].packed=false,$inventory.delete("Promise Ring"),$boxSpace-=$objects[18].weight,$currObject="Promise Ring",$currObjIndex=18,$objects[18].count-=1]]</div></li>
</ul>
<<if $objects[18].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[18].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
You find your old promise ring in the corner of your jewelry box. You’ve held on to it because, hey, promise rings are always sweet—even those from your ex-S.O.
<div id="revealText1">
<<nobr>>
Turning the simple little ring over between your fingers, a <span id="choice1"> <<link "warm summer">><<replace "#choice1">>cool autumn<</replace>><</link>></span> night flashes into your mind. You can taste the salt in the air as you see yourself strolling along the beach. You’re there, clutching your ex’s hand, thinking of <span id="choice2"> <<link "nothing">><<replace "#choice2">>everything<</replace>><</link>></span>
<</nobr>>
</div>
<div id="revealText2">
<<nobr>>
You remember how suddenly their grip released, and how the moonlight draped over their back as they stooped to a bended knee in the sand. Your heart beat was <span id="choice3"> <<link "thumping wildly in your ears">><<replace "#choice3">>somehow calm, even serene<</replace>><</link>></span>. Before you could utter a word, your ex said, <span id="choice4"> <<link "“Although you aren’t ready to be married, I’d like to at least promise that my heart belongs to you”">><<replace "#choice4">>I want you to hold onto this<</replace>><</link>></span>. Water from the welling tears you were barely holding back began to blur your vision. You couldn’t help it, you’ve always been a romantic. The pale glow shimmering off the metal becomes bright sunlight once again. You’re alone in your apartment. <span id="choice5"> <<link "Maybe you would consider giving marriage a shot after all some day">><<replace "#choice5">>And it feels good<</replace>><</link>></span>.<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[SoundSystem|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/soundSystem.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[19].packed=true,$inventory.push("Sound System"),$boxSpace+=$objects[19].weight,$currObject="Sound System",$currObjIndex=19,$objects[19].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[19].packed=false,$inventory.delete("Sound System"),$boxSpace-=$objects[19].weight,$currObject="Sound System",$currObjIndex=19,$objects[19].count-=1]]</div></li>
</ul>
<<if $objects[19].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[19].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
Across the room, by the television and the record player, you see a set of bulky speakers, clumped together alongside their accompanying electronics.
<div id="revealText1"><<nobr>>
You don’t really want to think of how much all of this cost in total. <span id="choice1"> <<link "Having built it up piece-by-piece over the years">><<replace "#choice1">>Having picked up most of it from lucky finds at garage sales<</replace>><</link>></span>, the figure never seemed quite so immediate. Now, looking at it all, you wonder why you couldn’t have just settled for a simple soundbar, or a nice pair of headphones. <</nobr>>
</div>
<div id="revealText2"><<nobr>>
Have you ever received noise complaints from your neighbors? Sure, a few times. But doesn’t that just mean you were doing something right? Your friends love coming over here <span id="choice2"> <<link "to watch the game">><<replace "#choice2">>for movie night<</replace>><</link>></span>. Plus, you’ve spent hours playing record after record—<span id="choice3"> <<link "classic R&B">><<replace "#choice3">>the hottest indie acts<</replace>><</link>></span>, your thoughts carried off and away on the wings of a perfectly tuned equalizer. And you’re not too shy to admit that your system can totally set a move. But wow, have these things always been this heavy?<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[SpecialBlanket|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/specialBlanket.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[20].packed=true,$inventory.push("Special Blanket"),$boxSpace+=$objects[20].weight,$currObject="Special Blanket",$currObjIndex=20,$objects[20].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[20].packed=false,$inventory.delete("Special Blanket"),$boxSpace-=$objects[20].weight,$currObject="Special Blanket",$currObjIndex=20,$objects[20].count-=1]]</div></li>
</ul>
<<if $objects[20].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[20].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
Folded on top of a random box is a blanket your favorite aunt stitched for you. It's one of the only blankets you feel the need to own.
<div id="revealText1">
This blanket has kept you warm from your childhood to young adult life. You run your hands across the soft surface, taking in the beautiful stitching. Your aunt is talented, for sure.
</div>
<div id="revealText2">
Suddenly you're thinking back to the day your aunt gifted you with this special blanket. It was your birthday party, and though all your friends from school showed up, you weren't having much fun. Just when you were going to find somewhere to hide, in she walks carrying the blanket wrapped in huge ribbon. Her smile is bright as she says, "Sugarbear, I have something for you! I've been making it for six months. Happy Birthday!!"
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[TaxidermyFrog|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/taxidermyFrog.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[21].packed=true,$inventory.push("Taxidermied Frog"),$boxSpace+=$objects[21].weight,$currObject="Taxidermied Frog",$currObjIndex=21,$objects[21].count+=1]] </div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[21].packed=false,$inventory.delete("Taxidermied Frog"),$boxSpace-=$objects[21].weight,$currObject="Taxidermied Frog",$currObjIndex=21,$objects[21].count-=1]]</div></li>
</ul>
<<if $objects[21].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[21].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
Your taxidermied frog, rough, brown, glass-eyed—potentially, as always, actually a toad—sits proudly on your television console.
<div id="revealText1"><<nobr>>
The frog looks at you with an expression that could only be described as <span id="choice1"> <<link "something like affection">><<replace "#choice1">>something akin to resentment<</replace>><</link>></span>. Its jaw remains nailed into a permanent grimace, and the only signs of wear that you can see are the stubs that remain where some of its fingers used to be. <</nobr>>
</div>
<div id="revealText2"><<nobr>>
This thing has been with you through each and every apartment. And it’s the best gift your sister has ever gotten you, that’s for sure. You want to say it’s Puerto Rican, but the last time you thought to ask, even she couldn’t remember. You wonder why you’ve never given it a name, and you decide here and now to do it. How about <span id="choice2"> <<link "Lenny">><<replace "#choice2">>Samantha<</replace>><</link>></span>?<</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[WassilyChair|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/wassilyChair.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[22].packed=true,$inventory.push("Wassily Chair"),$boxSpace+=$objects[22].weight,$currObject="Wassily Chair",$currObjIndex=22,$objects[22].count+=1]]</div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[22].packed=false,$inventory.delete("Wassily Chair"),$boxSpace-=$objects[22].weight,$currObject="Wassily Chair",$currObjIndex=22,$objects[22].count-=1]]</div></li>
</ul>
<<if $objects[22].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[22].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
Every time you look around your living room, you can’t help but lend a long look over toward your “adult” Vintage Wassily Chair. This thing. Wow.
<div id="revealText1"><<nobr>>
You are <span id="choice1"> <<link "a designer">><<replace "#choice1">>a connoisseur of design<</replace>><</link>></span>. This chair was designed by famed architect and designer Marcel Breuer. It is the only thing you own by a famous designer. It is <span id="choice2"> <<link "a symbol">><<replace "#choice2">>a dream<</replace>><<replace "#choice3">>A dream<</replace>><</link>></span>. <span id="choice3">A symbol</span> of what you want your adult life to look like. <</nobr>>
</div>
<div id="revealText2">
Your first apartment was full of thrift store finds, hand-me-downs, and Ikea furniture. Things were coordinated and everything served its purpose well enough. It looked nice, but there wasn’t any furniture in it to phone home about. Everything changed when your sister moved to California and re-gifted you this chair. This beautiful chair originally belonged to a famous local architect, who gifted it to a friend of your sister, who then gifted it to her. As a fan of Modernism, for you, this was the like the gift of all gifts. You could picture your future with it: full of designer things. Full of nice things, adult things.
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><ul>
<li><div id="home" class="buttons3 " onclick="">[img[https://github.com/tblunt18/MemoryLane/raw/master/home.png][Home]]</div></li>
<li><div class="itemsPassage">[img[YogaMat|https://github.com/tblunt18/MemoryLane/raw/master/objectImages/yogaMat.png]]</div></li>
<li><div id="packBtn" class="buttons2 packBtn" onclick="packit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/packit.png][Home][$objects[23].packed=true,$inventory.push("Yoga Mat"),$boxSpace+=$objects[23].weight,$currObject="Yoga Mat",$currObjIndex=23,$objects[23].count+=1]]</div></li>
<li><div id="leaveBtn" class="buttons2 leaveBtn" onclick="leaveit()">[img[https://github.com/tblunt18/MemoryLane/raw/master/leaveit.png][Home]]</div></li>
<li><div id="unpac" class="buttons2 unpac">[img[https://github.com/tblunt18/MemoryLane/raw/master/unpackdemo.png][Home][$objects[23].packed=false,$inventory.delete("Yoga Mat"),$boxSpace-=$objects[23].weight,$currObject="Yoga Mat",$currObjIndex=23,$objects[23].count-=1]]</div></li>
</ul>
<<if $objects[23].packed==true>>
<<script>>
$(document).ready(function(){
unpackit();
});
<</script>>
<<else>>
<<script>>
$(document).ready(function(){
packOrLeave();
});
<</script>>
<</if>>
Weight: <<print $objects[23].weight >>
<div class="SpaceText"><<print $boxSpace>>/35 units used</div>
On the floor, by your main window, you spy your “I will exercise this year” yoga mat.
<div id="revealText1"><<nobr>>
You’ll admit to being a yogi at heart. But <span id="choice1"> <<link "finding time to exercise is hard">><<replace "#choice1">>finding time to relax is hard<</replace>><</link>></span>. Work. Family. Friends. It seems like you’ll never make it back to a class. <</nobr>>
</div>
<div id="revealText2"><<nobr>>
Whenever you get the chance, though, yoga is your haven. No matter what is happening, you can take it to the mat. You go in <span id="choice2"> <<link "stiff and stressed ">><<replace "#choice2">>caught up in your own head<</replace>><</link>></span>, then come out feeling <span id="choice3"> <<link "strong and relaxed">><<replace "#choice3">>present and empowered<</replace>><</link>></span>. Of course, that’s when you can make it happen. In the last year, there have been stretches of weekly yoga, but it’s been a while now. Let’s be honest, it’s been a long while. But that’s the past. This is now. Tomorrow will be different! So long as you hang onto this mat. <</nobr>>
</div>
<<nobr>>
<div class="buttons readMore" onclick="reveal1()">[img[https://github.com/tblunt18/MemoryLane/raw/master/readMore.png]]
</div>
<div class="buttons evenMore" onclick="reveal2()">[img[https://github.com/tblunt18/MemoryLane/raw/master/evenMore.png]]
</div>
<</nobr>><div
style="position: relative; width: 1063px; height: 511px; padding: 5px; ">
<img
id="apartment" src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/apartment-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Banjo"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/banjo-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Box Lights"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/boxLights-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Coconut Oil"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/coconutOil-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="College Letter"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/collegeLetter-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="French Press"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/coffeeMaker-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="T-shirts"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/comfortableTees-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Compact Mirror"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/compactMirror-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Poster"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/concertPoster-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Book"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/favoriteBook-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Silverware"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/heirloomSilverware-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Plant"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/housePlant-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Kitchenaid Mixer"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/kitchenaid-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Black Dress"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/littleBlackDress-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Camera"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/nikonD90-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Notebooks"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/notebooks-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Popcorn"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/popcorn-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Promise Ring"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/promiseRing-01.png"
style="position: absolute; left: 0; top: 0;width: 1063px; height: 511px;">
<img
id="Sneakers"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/sneakers-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Sound System"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/soundsystem-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Special Blanket"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/specialBlanket-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Taxidermied Frog"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/taxidermyFrog-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Wassily Chair"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/wassilyChair-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Yearbook"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/yearbook-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
<img
id="Yoga Mat"
src="https://github.com/tblunt18/MemoryLane/raw/master/compositeImages/yogaMat-01.png"
style="position: absolute; left: 0; top: 0; width: 1063px; height: 511px;">
</div>
<<nobr>>
<<set $ob = []>>
<<set $listObj = []>>
<<for _i to 0; _i lt $objects.length; _i++>>
<<if $objects[_i].packed == true>>
<<print $objects[_i].keep>>
<<else>>
<<set $ob.push($objects[_i].objName)>>
<<set $listObj.push($objects[_i].leave)>>
<</if>>
<</for>>
<br>
<div id="leaveStatements">
<br>
</div>
<<script>>
$(document).ready(function(){
var i = 0;
var variableNow = variables().ob;
var variableList = variables().listObj;
var nums = [];
var count = 0;
while (i < variables().ob.length){
var randNum = Math.floor(Math.random() * variableList.length);
document.getElementById(variableNow[i]).style.display = "none";
if (count == 0){
document.getElementById('leaveStatements').innerHTML += variableList[randNum];
count++;
nums.push(randNum);
}
else if (count > 0 && count < 5) {
if (!nums.includes(randNum)){
document.getElementById('leaveStatements').innerHTML += variableList[randNum];
count++;
nums.push(randNum);
}
}
else{
}
i++;
}
});
<</script>>
<</nobr>>
<div id="revealText1">
text
</div>
<div class="buttons evenMore" onclick="reveal2()">
texting
</div>
<div id="revealText2" class="buttons" >
texting more
</div>