+
+
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..7583030
--- /dev/null
+++ b/script.js
@@ -0,0 +1,44 @@
+
+/* Module 1: STRUCTURE AND CSS
+* As a user, when I visit the splash page, I should see a page whose general layout matches the design mockup [excluding dynamic content]
+* As a user, when I visit the splash page, I should see a railroad track with 19% opacity on the right hand side.
+* As a user, when I visit the playlist page, I should see a page whose general layout matches the design mockup [excluding dynamic content]
+* As a user, when I click "choose tracks" on the splash page, it takes me to the playlist page. */
+
+/*## APIs:
+A user will hit this api to get all of the albums:
+https://lit-fortress-6467.herokuapp.com/object
+
+A user will send a POST request to this api to send the playlist when completed. https://lit-fortress-6467.herokuapp.com/post*/
+
+
+$( document ).ready(function() {
+ var albCovers = [];
+ $.getJSON('https://lit-fortress-6467.herokuapp.com/object/',function(data){
+ while(albCovers.length < 3){
+ var rand = Math.floor(Math.random() * data['results'].length);
+ var covers = albCovers.indexOf(data['results'][rand]['cover_art']);
+ if(albCovers.indexOf(data['results'][rand]['cover_art']) === -1){
+ albCovers.push(data['results'][rand]['cover_art']);
+ }
+ }
+ for (var i=0; i< albCovers.length; i++){
+ $("#albumPhoto").append(`
+