-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDJSchedule.js
3242 lines (3148 loc) · 400 KB
/
DJSchedule.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// <script type="text/javascript">
function DJSchedule() {
var nextDate = new Date();
var pst = nextDate.toLocaleString('en-US', {
timeZone: 'America/Los_Angeles',
});
nextDate = new Date(pst);
switch(nextDate.getDay()) {
case 0:
switch(nextDate.getHours()) {
case 0:
let text0 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text0)
document.getElementById("bio").innerHTML = text0;
//change the image to the DJ's image DJshowLogo
let DJshowLogo0 = document.getElementById("DJshowLogo");
let DJname0 = document.getElementById("DJname");
let DJbio0 = document.getElementById("DJbio");
let DJshowBio0 = document.getElementById("DJshowBio");
if(DJname0.innerHTML !== "TR Staff")
DJname0.innerHTML = "TR Staff";
if(DJbio0.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio0.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio0.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio0.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo0.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo0.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 1:
let text1 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text1)
document.getElementById("bio").innerHTML = text1;
//change the image to the DJ's image DJshowLogo
let DJshowLogo1 = document.getElementById("DJshowLogo");
let DJname1 = document.getElementById("DJname");
let DJbio1 = document.getElementById("DJbio");
let DJshowBio1 = document.getElementById("DJshowBio");
if(DJname1.innerHTML !== "TR Staff")
DJname1.innerHTML = "TR Staff";
if(DJbio1.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio1.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio1.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio1.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo1.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo1.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 2:
let text2 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text2)
document.getElementById("bio").innerHTML = text2;
//change the image to the DJ's image DJshowLogo
let DJshowLogo2 = document.getElementById("DJshowLogo");
let DJname2 = document.getElementById("DJname");
let DJbio2 = document.getElementById("DJbio");
let DJshowBio2 = document.getElementById("DJshowBio");
if(DJname2.innerHTML !== "TR Staff")
DJname2.innerHTML = "TR Staff";
if(DJbio2.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio2.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio2.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio2.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo2.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo2.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 3:
let text3 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text3)
document.getElementById("bio").innerHTML = text3;
//change the image to the DJ's image DJshowLogo
let DJshowLogo3 = document.getElementById("DJshowLogo");
let DJname3 = document.getElementById("DJname");
let DJbio3 = document.getElementById("DJbio");
let DJshowBio3 = document.getElementById("DJshowBio");
if(DJname3.innerHTML !== "TR Staff")
DJname3.innerHTML = "TR Staff";
if(DJbio3.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio3.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio3.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio3.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo3.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo3.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 4:
let text4 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text4)
document.getElementById("bio").innerHTML = text4;
//change the image to the DJ's image DJshowLogo
let DJshowLogo4 = document.getElementById("DJshowLogo");
let DJname4 = document.getElementById("DJname");
let DJbio4 = document.getElementById("DJbio");
let DJshowBio4 = document.getElementById("DJshowBio");
if(DJname4.innerHTML !== "TR Staff")
DJname4.innerHTML = "TR Staff";
if(DJbio4.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio4.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio4.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio4.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo4.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo4.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 5:
let text5 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text5)
document.getElementById("bio").innerHTML = text5;
//change the image to the DJ's image DJshowLogo
let DJshowLogo5 = document.getElementById("DJshowLogo");
let DJname5 = document.getElementById("DJname");
let DJbio5 = document.getElementById("DJbio");
let DJshowBio5 = document.getElementById("DJshowBio");
if(DJname5.innerHTML !== "TR Staff")
DJname5.innerHTML = "TR Staff";
if(DJbio5.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio5.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio5.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio5.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo5.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo5.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 6:
let text6 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text6)
document.getElementById("bio").innerHTML = text6;
//change the image to the DJ's image DJshowLogo
let DJshowLogo6 = document.getElementById("DJshowLogo");
let DJname6 = document.getElementById("DJname");
let DJbio6 = document.getElementById("DJbio");
let DJshowBio6 = document.getElementById("DJshowBio");
if(DJname6.innerHTML !== "TR Staff")
DJname6.innerHTML = "TR Staff";
if(DJbio6.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio6.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio6.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio6.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo6.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo6.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 7:
let text7 = "Dreamsort Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text7)
document.getElementById("bio").innerHTML = text7;
let DJshowLogo7 = document.getElementById("DJshowLogo");
let DJname7 = document.getElementById("DJname");
let DJbio7 = document.getElementById("DJbio");
let DJshowBio7 = document.getElementById("DJshowBio");
if(DJname7.innerHTML !== "DJ liza")
DJname7.innerHTML = "DJ liza";
if(DJbio7.innerHTML !== "DJ liza is a guitarist, producer and singer-songwriter born and raised in northern orange county. computer science major by day and hazy alt-rocker by night, she spends a whole lot of her time trying to figure out how to journal her adolescence from her home studio. a strong believer in embracing music through community: they're more than happy to share their weekly curation of tracks from varied and often underrepresented artists.")
DJbio7.innerHTML = "DJ liza is a guitarist, producer and singer-songwriter born and raised in northern orange county. computer science major by day and hazy alt-rocker by night, she spends a whole lot of her time trying to figure out how to journal her adolescence from her home studio. a strong believer in embracing music through community: they're more than happy to share their weekly curation of tracks from varied and often underrepresented artists.";
if(DJshowBio7.innerHTML !== "dreamsort radio returns a second time to broadcast an intimate look into the internet underground & it's progressive influences across the years. dreamsort showcases projects both legendary and undiscovered from a myriad of genres... from shoegaze and rock to folk and experimental pop, there's nothing to miss out if you tune in. just don't dive too deep!")
DJshowBio7.innerHTML = "dreamsort radio returns a second time to broadcast an intimate look into the internet underground & it's progressive influences across the years. dreamsort showcases projects both legendary and undiscovered from a myriad of genres... from shoegaze and rock to folk and experimental pop, there's nothing to miss out if you tune in. just don't dive too deep!";
if (DJshowLogo7.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/11/dreamsortRadio.jpg')")
DJshowLogo7.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/11/dreamsortRadio.jpg')";
break
case 8:
let text8 = "Willowing Hour";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text8)
document.getElementById("bio").innerHTML = text8;
let DJshowLogo8 = document.getElementById("DJshowLogo");
let DJname8 = document.getElementById("DJname");
let DJbio8 = document.getElementById("DJbio");
let DJshowBio8 = document.getElementById("DJshowBio");
if (DJname8.innerHTML !== "DJ Meadow")
DJname8.innerHTML = "DJ Meadow";
if (DJbio8.innerHTML !== "Kylee (Kye) Viayra has been involved with music throughout her entire life. She started writing, playing and performing since 11 years old. She is now a music enthusiast who loves to listen to songs on repeat and learn about the overall meaning of the song. She is constantly looking for new music of any and every genre to break down and listen too. ")
DJbio8.innerHTML = "Kylee (Kye) Viayra has been involved with music throughout her entire life. She started writing, playing and performing since 11 years old. She is now a music enthusiast who loves to listen to songs on repeat and learn about the overall meaning of the song. She is constantly looking for new music of any and every genre to break down and listen too. ";
if (DJshowBio8.innerHTML !== "This show would focus on specific albums and songs every week. I would listen to certain songs on the album and break them down for the viewers. Describe theories and ideas based on parts of each song and possibly link them to the artists other songs.")
DJshowBio8.innerHTML = "This show would focus on specific albums and songs every week. I would listen to certain songs on the album and break them down for the viewers. Describe theories and ideas based on parts of each song and possibly link them to the artists other songs.";
if (DJshowLogo8.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Willowing-Hour.jpg')")
DJshowLogo8.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/Willowing-Hour.jpg')";
break;
case 9:
let text9 = "Fairy Soirée";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text9)
document.getElementById("bio").innerHTML = text9;
let DJshowLogo9 = document.getElementById("DJshowLogo");
let DJname9 = document.getElementById("DJname");
let DJbio9 = document.getElementById("DJbio");
let DJshowBio9 = document.getElementById("DJshowBio");
if (DJname9.innerHTML !== "Linz")
DJname9.innerHTML = "Linz";
if (DJbio9.innerHTML !== "I wanted to become a DJ because music is something that I love. Sharing my songs is something I’ve been afraid to do but been wanting to finally pursue. I’m always open to listening to new genres and songs, although I always have my personal playlist on a loop.")
DJbio9.innerHTML = "I wanted to become a DJ because music is something that I love. Sharing my songs is something I’ve been afraid to do but been wanting to finally pursue. I’m always open to listening to new genres and songs, although I always have my personal playlist on a loop.";
if (DJshowBio9.innerHTML !== "Do you tend to daydream whenever you listen to music and create little scenes? If you do that too, then Fairy Soirée is the right fit for you! Feeling small in a big world of music is something everyone experiences, and this show welcomes you!")
DJshowBio9.innerHTML = "Do you tend to daydream whenever you listen to music and create little scenes? If you do that too, then Fairy Soirée is the right fit for you! Feeling small in a big world of music is something everyone experiences, and this show welcomes you!";
if (DJshowLogo9.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Fairy-Soiree.jpg')")
DJshowLogo9.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/Fairy-Soiree.jpg')";
break;
case 10:
let text10 = "Team Huddle";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text10)
document.getElementById("bio").innerHTML = text10;
let DJshowLogo10 = document.getElementById("DJshowLogo");
let DJname10 = document.getElementById("DJname");
let DJbio10 = document.getElementById("DJbio");
let DJshowBio10 = document.getElementById("DJshowBio");
if (DJname10.innerHTML !== "Pey")
DJname10.innerHTML = "Pey";
if (DJbio10.innerHTML !== "Pey is an ambitious, creative individual who wants nothing more than to create human connections and emote positive energy into the world. She loves trying out new experiences, as well as finding new ways to explore more artistic forms of self expression. Peyton’s goal is to use her passions for film, art, and music to connect with others and build a safe community that is open to all.")
DJbio10.innerHTML = "Pey is an ambitious, creative individual who wants nothing more than to create human connections and emote positive energy into the world. She loves trying out new experiences, as well as finding new ways to explore more artistic forms of self expression. Peyton’s goal is to use her passions for film, art, and music to connect with others and build a safe community that is open to all.";
if (DJshowBio10.innerHTML !== "o you need more positive energy in your life? From covering current pop culture events to discussing ways to maintain healthy habits in this stress inducing world, Pey is here to host heartfelt, energetic conversations to connect listeners together.")
DJshowBio10.innerHTML = "o you need more positive energy in your life? From covering current pop culture events to discussing ways to maintain healthy habits in this stress inducing world, Pey is here to host heartfelt, energetic conversations to connect listeners together.";
if (DJshowLogo10.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Team-Huddle.jpg')")
DJshowLogo10.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/Team-Huddle.jpg')";
break;
case 11:
let text11 = "Tasty Waves";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text11)
document.getElementById("bio").innerHTML = text11;
let DJshowLogo11 = document.getElementById("DJshowLogo");
let DJname11 = document.getElementById("DJname");
let DJbio11 = document.getElementById("DJbio");
let DJshowBio11 = document.getElementById("DJshowBio");
if (DJname11.innerHTML !== "Bigaaron100")
DJname11.innerHTML = "Bigaaron100";
if (DJbio11.innerHTML !== "Bigaaron100 was born inside of a Guitar Center during a forbidden Stairway to Heaven solo. He is not of this world.")
DJbio11.innerHTML = "Bigaaron100 was born inside of a Guitar Center during a forbidden Stairway to Heaven solo. He is not of this world.";
if (DJshowBio11.innerHTML !== "You want them, we got them, come get them.")
DJshowBio11.innerHTML = "You want them, we got them, come get them.";
if (DJshowLogo11.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Tasty-Waves.jpg')")
DJshowLogo11.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/Tasty-Waves.jpg')";
break;
case 12:
let text12 = "CSUF Programming";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text12)
document.getElementById("bio").innerHTML = text12;
let DJshowLogo12 = document.getElementById("DJshowLogo");
let DJname12 = document.getElementById("DJname");
let DJbio12 = document.getElementById("DJbio");
let DJshowBio12 = document.getElementById("DJshowBio");
if(DJname12.innerHTML !== "CSUF")
DJname12.innerHTML = "CSUF";
if(DJbio12.innerHTML !== "")
DJbio12.innerHTML = "";
if(DJshowBio12.innerHTML !== "This spot is reserved for CSUF programming, otherwise TR2 will play. This can be either for clubs or campus departments. If you are interested in having your programming on Titan Radio, please contact us at [email protected]")
DJshowBio12.innerHTML = "This spot is reserved for CSUF programming, otherwise TR2 will play. This can be either for clubs or campus departments. If you are interested in having your programming on Titan Radio, please contact us at [email protected]";
if (DJshowLogo12.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
document.getElementById("DJshowLogo").style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 13:
let text13 = "CSUF Programming";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text13)
document.getElementById("bio").innerHTML = text13;
let DJshowLogo13 = document.getElementById("DJshowLogo");
let DJname13 = document.getElementById("DJname");
let DJbio13 = document.getElementById("DJbio");
let DJshowBio13 = document.getElementById("DJshowBio");
if(DJname13.innerHTML !== "CSUF")
DJname13.innerHTML = "CSUF";
if(DJbio13.innerHTML !== "")
DJbio13.innerHTML = "";
if(DJshowBio13.innerHTML !== "This spot is reserved for CSUF programming, otherwise TR2 will play. This can be either for clubs or campus departments. If you are interested in having your programming on Titan Radio, please contact us at [email protected]")
DJshowBio13.innerHTML = "This spot is reserved for CSUF programming, otherwise TR2 will play. This can be either for clubs or campus departments. If you are interested in having your programming on Titan Radio, please contact us at [email protected]";
if (DJshowLogo13.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
document.getElementById("DJshowLogo").style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 14:
let text14 = "CSUF Programming";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text14)
document.getElementById("bio").innerHTML = text14;
let DJshowLogo14 = document.getElementById("DJshowLogo");
let DJname14 = document.getElementById("DJname");
let DJbio14 = document.getElementById("DJbio");
let DJshowBio14 = document.getElementById("DJshowBio");
if(DJname14.innerHTML !== "CSUF")
DJname14.innerHTML = "CSUF";
if(DJbio14.innerHTML !== "")
DJbio14.innerHTML = "";
if(DJshowBio14.innerHTML !== "This spot is reserved for CSUF programming, otherwise TR2 will play. This can be either for clubs or campus departments. If you are interested in having your programming on Titan Radio, please contact us at [email protected]")
DJshowBio14.innerHTML = "This spot is reserved for CSUF programming, otherwise TR2 will play. This can be either for clubs or campus departments. If you are interested in having your programming on Titan Radio, please contact us at [email protected]";
if (DJshowLogo14.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
document.getElementById("DJshowLogo").style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 15:
let text15 = "CSUF Programming";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text15)
document.getElementById("bio").innerHTML = text15;
let DJshowLogo15 = document.getElementById("DJshowLogo");
let DJname15 = document.getElementById("DJname");
let DJbio15 = document.getElementById("DJbio");
let DJshowBio15 = document.getElementById("DJshowBio");
if(DJname15.innerHTML !== "CSUF")
DJname15.innerHTML = "CSUF";
if(DJbio15.innerHTML !== "")
DJbio15.innerHTML = "";
if(DJshowBio15.innerHTML !== "This spot is reserved for CSUF programming, otherwise TR2 will play. This can be either for clubs or campus departments. If you are interested in having your programming on Titan Radio, please contact us at [email protected]")
DJshowBio15.innerHTML = "This spot is reserved for CSUF programming, otherwise TR2 will play. This can be either for clubs or campus departments. If you are interested in having your programming on Titan Radio, please contact us at [email protected]";
if (DJshowLogo15.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
document.getElementById("DJshowLogo").style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 16:
let text16 = "Nic's Mix";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text16)
document.getElementById("bio").innerHTML = text16;
let DJshowLogo16 = document.getElementById("DJshowLogo");
let DJname16 = document.getElementById("DJname");
let DJbio16 = document.getElementById("DJbio");
let DJshowBio16 = document.getElementById("DJshowBio");
if (DJname16.innerHTML !== "Nic")
DJname16.innerHTML = "Nic";
if (DJbio16.innerHTML !== "Nic, or nicollette, loves all things music. she’s a singer who finds her sound in dolores o’riordan of the cranberries. she hopes you love indie and rock, because she’s got a whole lot of it!")
DJbio16.innerHTML = "Nic, or nicollette, loves all things music. she’s a singer who finds her sound in dolores o’riordan of the cranberries. she hopes you love indie and rock, because she’s got a whole lot of it!";
if (DJshowBio16.innerHTML !== "I love music, and I want to share my favorites to the world. so we’re starting with csuf.")
DJshowBio16.innerHTML = "I love music, and I want to share my favorites to the world. so we’re starting with csuf.";
if (DJshowLogo16.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/nics-mix.jpg')")
DJshowLogo16.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/nics-mix.jpg')";
break;
case 17:
let text17 = "Who's on Aux";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text17)
document.getElementById("bio").innerHTML = text17;
let DJshowLogo17 = document.getElementById("DJshowLogo");
let DJname17 = document.getElementById("DJname");
let DJbio17 = document.getElementById("DJbio");
let DJshowBio17 = document.getElementById("DJshowBio");
if (DJname17.innerHTML !== "Reggie and K8")
DJname17.innerHTML = "Reggie and K8";
if (DJbio17.innerHTML !== "I love listening and making music. I have a lot of friends who are making music and putting it out there for others to listen. I feel like our generation is using the technology we have at our disposal to create music and share it without having to have a lot of money or having a real studio. With the rise of artists using things like garage band and their phones to create works of art appreciated by so many, it’s important to expand our music collections to include these smaller artists.")
DJbio17.innerHTML = "I love listening and making music. I have a lot of friends who are making music and putting it out there for others to listen. I feel like our generation is using the technology we have at our disposal to create music and share it without having to have a lot of money or having a real studio. With the rise of artists using things like garage band and their phones to create works of art appreciated by so many, it’s important to expand our music collections to include these smaller artists.";
if (DJshowBio17.innerHTML !== "This show is a place where people can find new music from artists they might not know about yet. We are going to spotlight different artists every episode, play some of their music, and interview them on what it’s like first starting out in the music industry. This show will give small artists a chance to gain some listeners as well as give listeners a chance to find a new artist they love.")
DJshowBio17.innerHTML = "This show is a place where people can find new music from artists they might not know about yet. We are going to spotlight different artists every episode, play some of their music, and interview them on what it’s like first starting out in the music industry. This show will give small artists a chance to gain some listeners as well as give listeners a chance to find a new artist they love.";
if (DJshowLogo17.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Whos-on-Aux.jpg')")
DJshowLogo17.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/Whos-on-Aux.jpg')";
break;
case 18:
let text18 = "Lunch Break";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text18)
document.getElementById("bio").innerHTML = text18;
let DJshowLogo18 = document.getElementById("DJshowLogo");
let DJname18 = document.getElementById("DJname");
let DJbio18 = document.getElementById("DJbio");
let DJshowBio18 = document.getElementById("DJshowBio");
if (DJname18.innerHTML !== "Sabrina")
DJname18.innerHTML = "Sabrina";
if (DJbio18.innerHTML !== "Sabrina is a fourth year CTVA student with a focus in sound production for film/TV. She enjoys going to concerts throughout California is search of new music. In her free time she enjoys learning new instruments, watching films, and going to the gym.")
DJbio18.innerHTML = "Sabrina is a fourth year CTVA student with a focus in sound production for film/TV. She enjoys going to concerts throughout California is search of new music. In her free time she enjoys learning new instruments, watching films, and going to the gym.";
if (DJshowBio18.innerHTML !== "Features new music for a variety of listeners open to music such as indie, pop, electronic.")
DJshowBio18.innerHTML = "Features new music for a variety of listeners open to music such as indie, pop, electronic.";
if (DJshowLogo18.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Lunch-Break.jpg')")
DJshowLogo18.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/Lunch-Break.jpg')";
break;
case 19:
let text19 = "The Kaynéti Show";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text19)
document.getElementById("bio").innerHTML = text19;
let DJshowLogo19 = document.getElementById("DJshowLogo");
let DJname19 = document.getElementById("DJname");
let DJbio19 = document.getElementById("DJbio");
let DJshowBio19 = document.getElementById("DJshowBio");
if (DJname19.innerHTML !== "Kaynéti")
DJname19.innerHTML = "Kaynéti";
if (DJbio19.innerHTML !== "Kaynéti is a 1st year college student with a big personality, big opinions, and a lot to say. Her unique takes on popular topics and colorful music taste makes for good vibes and an extremely boisterous show!")
DJbio19.innerHTML = "Kaynéti is a 1st year college student with a big personality, big opinions, and a lot to say. Her unique takes on popular topics and colorful music taste makes for good vibes and an extremely boisterous show!";
if (DJshowBio19.innerHTML !== "A fun silly little show with a fun and silly little girl! On The Kayneti Show, we talk about all kinds of things! From pop culture to politics, there’s something here for everyone. Don’t be afraid to stop by!")
DJshowBio19.innerHTML = "A fun silly little show with a fun and silly little girl! On The Kayneti Show, we talk about all kinds of things! From pop culture to politics, there’s something here for everyone. Don’t be afraid to stop by!";
if (DJshowLogo19.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')") //missing
DJshowLogo19.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break;
case 20:
let text20 = "sprinkle of spanish";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text20)
document.getElementById("bio").innerHTML = text20;
let DJshowLogo20 = document.getElementById("DJshowLogo");
let DJname20 = document.getElementById("DJname");
let DJbio20 = document.getElementById("DJbio");
let DJshowBio20 = document.getElementById("DJshowBio");
if (DJname20.innerHTML !== "DJ VEVO")
DJname20.innerHTML = "DJ VEVO";
if (DJbio20.innerHTML !== "Fresh to the scene and armed with clean beats to get you time to feel seen. DJ VEVO is ready to bring the spice to the stage!")
DJbio20.innerHTML = "Fresh to the scene and armed with clean beats to get you time to feel seen. DJ VEVO is ready to bring the spice to the stage!";
if (DJshowBio20.innerHTML !== "The show to get your flow moving like Shakira. It's time to explore feel-good hits that inspire you to keep overachieving. There'll be sounds to take you way back or moments to keep you laid-back.")
DJshowBio20.innerHTML = "The show to get your flow moving like Shakira. It's time to explore feel-good hits that inspire you to keep overachieving. There'll be sounds to take you way back or moments to keep you laid-back.";
if (DJshowLogo20.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Sprinkle-of-Spanish.png')")
DJshowLogo20.style.backgroundImage = "https://titanradio.org/wp-content/uploads/2023/10/Sprinkle-of-Spanish.png')";
break;
case 21:
let text21 = "Not A Phase";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text21)
document.getElementById("bio").innerHTML = text21;
let DJshowLogo21 = document.getElementById("DJshowLogo");
let DJname21 = document.getElementById("DJname");
let DJbio21 = document.getElementById("DJbio");
let DJshowBio21 = document.getElementById("DJshowBio");
if (DJname21.innerHTML !== "DJ Anais")
DJname21.innerHTML = "DJ Anais";
if (DJbio21.innerHTML !== "Growing up attending Warped Tour and local shows, Anais has always adored the sense of community and belonging this music has brought to her and those who enjoy it. Anais is eager to bring this same community and nostalgia to CSUF through her musical picks each week.")
DJbio21.innerHTML = "Growing up attending Warped Tour and local shows, Anais has always adored the sense of community and belonging this music has brought to her and those who enjoy it. Anais is eager to bring this same community and nostalgia to CSUF through her musical picks each week.";
if (DJshowBio21.innerHTML !== "A show for fans of Post-hardcore, pop-punk, melodic hardcore, hardcore punk, shoegaze, and emo. Current and throwback, it’s not a phase, mom!")
DJshowBio21.innerHTML = "A show for fans of Post-hardcore, pop-punk, melodic hardcore, hardcore punk, shoegaze, and emo. Current and throwback, it’s not a phase, mom!";
if (DJshowLogo21.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/not-a-phase.jpg')")
DJshowLogo21.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/not-a-phase.jpg')";
break;
case 22:
let text22 = "A Little to Gone...";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text22)
document.getElementById("bio").innerHTML = text22;
let DJshowLogo22 = document.getElementById("DJshowLogo");
let DJname22 = document.getElementById("DJname");
let DJbio22 = document.getElementById("DJbio");
let DJshowBio22 = document.getElementById("DJshowBio");
if (DJname22.innerHTML !== "DJ GG")
DJname22.innerHTML = "DJ GG";
if (DJbio22.innerHTML !== "Gone Girl is her persona but Rachel R. is currently a Communications Marketing Major here at CSUF. She can often be described as Outspoken and a little bit eccentric. Her obsession with film makes her quite a bit of a Cinephile. Rachel’s Obsessive behavior towards pop culture and media makes her the perfect fit for 'A Little to Gone..'")
DJbio22.innerHTML = "Gone Girl is her persona but Rachel R. is currently a Communications Marketing Major here at CSUF. She can often be described as Outspoken and a little bit eccentric. Her obsession with film makes her quite a bit of a Cinephile. Rachel’s Obsessive behavior towards pop culture and media makes her the perfect fit for 'A Little to Gone..'";
if (DJshowBio22.innerHTML !== "Messy, Unorganized, and Complicated. 'A Little to Gone' is the newest show here at Titan Radio that will be your daily fix for messy and complicated pop culture news, media, and movie fix. Each episode will share the latest tea. Share the latest and hottest movie recommendations. And stories that are little too gone from host DJ GG.")
DJshowBio22.innerHTML = "Messy, Unorganized, and Complicated. 'A Little to Gone' is the newest show here at Titan Radio that will be your daily fix for messy and complicated pop culture news, media, and movie fix. Each episode will share the latest tea. Share the latest and hottest movie recommendations. And stories that are little too gone from host DJ GG.";
if (DJshowLogo22.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/A-Little-to-Gone.jpeg')")
DJshowLogo22.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/A-Little-to-Gone.jpeg')";
break;
case 23:
let text23 = "Pass the Mic";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text23)
document.getElementById("bio").innerHTML = text23;
let DJshowLogo23 = document.getElementById("DJshowLogo");
let DJname23 = document.getElementById("DJname");
let DJbio23 = document.getElementById("DJbio");
let DJshowBio23 = document.getElementById("DJshowBio");
if (DJname23.innerHTML !== "Mayrizzle/Mydaaaa")
DJname23.innerHTML = "Mayrizzle/Mydaaaa";
if (DJbio23.innerHTML !== "Julianna is a First Generation Freshman who is focused on informing students about the importance of relaxing and finding music that helps you unwind. She is very passionate about mental health, and rewarding others for their hard work. She wants to create a safe/chill environment where students can take a break and feel all the pressures of school and life in general slip away.")
DJbio23.innerHTML = "Julianna is a First Generation Freshman who is focused on informing students about the importance of relaxing and finding music that helps you unwind. She is very passionate about mental health, and rewarding others for their hard work. She wants to create a safe/chill environment where students can take a break and feel all the pressures of school and life in general slip away.";
if (DJshowBio23.innerHTML !== "Descanso is the spanish term for taking a break or breathing time in between moments of effort, a period of not working. Descanso is a podcast that explores the act of relaxing and what that means to people on a daily basis. The topics of discussion can vary depending on the day, but they will always be comforting to the listener. This podcast will also feature a new artist or song every week who is seen as refreshing to help listeners connect with their music tastes. Descanso is meant for everyone who would like to be introduced to topics and music that fill their relaxing times with encouraging messages and help them ease their minds during their chaotic days of being a student.")
DJshowBio23.innerHTML = "Descanso is the spanish term for taking a break or breathing time in between moments of effort, a period of not working. Descanso is a podcast that explores the act of relaxing and what that means to people on a daily basis. The topics of discussion can vary depending on the day, but they will always be comforting to the listener. This podcast will also feature a new artist or song every week who is seen as refreshing to help listeners connect with their music tastes. Descanso is meant for everyone who would like to be introduced to topics and music that fill their relaxing times with encouraging messages and help them ease their minds during their chaotic days of being a student.";
if (DJshowLogo23.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/11/passTheMic.jpg')") //missing
DJshowLogo23.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/11/passTheMic.jpg')";
break;
}
break
case 1:
switch(nextDate.getHours()) {
case 0:
let text0 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text0)
document.getElementById("bio").innerHTML = text0;
//change the image to the DJ's image DJshowLogo
let DJshowLogo0 = document.getElementById("DJshowLogo");
let DJname0 = document.getElementById("DJname");
let DJbio0 = document.getElementById("DJbio");
let DJshowBio0 = document.getElementById("DJshowBio");
if(DJname0.innerHTML !== "TR Staff")
DJname0.innerHTML = "TR Staff";
if(DJbio0.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio0.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio0.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio0.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo0.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo0.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 1:
let text1 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text1)
document.getElementById("bio").innerHTML = text1;
//change the image to the DJ's image DJshowLogo
let DJshowLogo1 = document.getElementById("DJshowLogo");
let DJname1 = document.getElementById("DJname");
let DJbio1 = document.getElementById("DJbio");
let DJshowBio1 = document.getElementById("DJshowBio");
if(DJname1.innerHTML !== "TR Staff")
DJname1.innerHTML = "TR Staff";
if(DJbio1.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio1.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio1.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio1.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo1.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo1.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 2:
let text2 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text2)
document.getElementById("bio").innerHTML = text2;
//change the image to the DJ's image DJshowLogo
let DJshowLogo2 = document.getElementById("DJshowLogo");
let DJname2 = document.getElementById("DJname");
let DJbio2 = document.getElementById("DJbio");
let DJshowBio2 = document.getElementById("DJshowBio");
if(DJname2.innerHTML !== "TR Staff")
DJname2.innerHTML = "TR Staff";
if(DJbio2.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio2.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio2.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio2.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo2.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo2.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 3:
let text3 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text3)
document.getElementById("bio").innerHTML = text3;
//change the image to the DJ's image DJshowLogo
let DJshowLogo3 = document.getElementById("DJshowLogo");
let DJname3 = document.getElementById("DJname");
let DJbio3 = document.getElementById("DJbio");
let DJshowBio3 = document.getElementById("DJshowBio");
if(DJname3.innerHTML !== "TR Staff")
DJname3.innerHTML = "TR Staff";
if(DJbio3.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio3.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio3.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio3.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo3.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo3.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 4:
let text4 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text4)
document.getElementById("bio").innerHTML = text4;
//change the image to the DJ's image DJshowLogo
let DJshowLogo4 = document.getElementById("DJshowLogo");
let DJname4 = document.getElementById("DJname");
let DJbio4 = document.getElementById("DJbio");
let DJshowBio4 = document.getElementById("DJshowBio");
if(DJname4.innerHTML !== "TR Staff")
DJname4.innerHTML = "TR Staff";
if(DJbio4.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio4.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio4.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio4.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo4.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo4.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 5:
let text5 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text5)
document.getElementById("bio").innerHTML = text5;
//change the image to the DJ's image DJshowLogo
let DJshowLogo5 = document.getElementById("DJshowLogo");
let DJname5 = document.getElementById("DJname");
let DJbio5 = document.getElementById("DJbio");
let DJshowBio5 = document.getElementById("DJshowBio");
if(DJname5.innerHTML !== "TR Staff")
DJname5.innerHTML = "TR Staff";
if(DJbio5.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio5.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio5.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio5.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo5.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo5.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 6:
let text6 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text6)
document.getElementById("bio").innerHTML = text6;
//change the image to the DJ's image DJshowLogo
let DJshowLogo6 = document.getElementById("DJshowLogo");
let DJname6 = document.getElementById("DJname");
let DJbio6 = document.getElementById("DJbio");
let DJshowBio6 = document.getElementById("DJshowBio");
if(DJname6.innerHTML !== "TR Staff")
DJname6.innerHTML = "TR Staff";
if(DJbio6.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio6.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio6.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio6.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo6.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo6.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 7:
let text7 = "Tunestorm";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text7)
document.getElementById("bio").innerHTML = text7;
let DJshowLogo7 = document.getElementById("DJshowLogo");
let DJname7 = document.getElementById("DJname");
let DJbio7 = document.getElementById("DJbio");
let DJshowBio7 = document.getElementById("DJshowBio");
if(DJname7.innerHTML !== "Valeria")
DJname7.innerHTML = "Valeria";
if(DJbio7.innerHTML !== "As a public relations major, Valeria is an aspiring music industry professional. Valeria enjoys creating playlists for every occasion and mood. An enthusiastic concert-goer and music lover, she enjoys searching for both new and old music and hopes to share her finds with others.")
DJbio7.innerHTML = "As a public relations major, Valeria is an aspiring music industry professional. Valeria enjoys creating playlists for every occasion and mood. An enthusiastic concert-goer and music lover, she enjoys searching for both new and old music and hopes to share her finds with others.";
if(DJshowBio7.innerHTML !== "Tunestorm is a collective display of the new, the old, and every song I have on repeat. Ranging from indie, rock-alt, the 70's to 90's, and the occasional pop/r&b, there is sure to be something for everyone to enjoy.")
DJshowBio7.innerHTML = "Tunestorm is a collective display of the new, the old, and every song I have on repeat. Ranging from indie, rock-alt, the 70's to 90's, and the occasional pop/r&b, there is sure to be something for everyone to enjoy.";
if (DJshowLogo7.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo7.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 8:
let text8 = "Good News Bears";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text8)
document.getElementById("bio").innerHTML = text8;
let DJshowLogo8 = document.getElementById("DJshowLogo");
let DJname8 = document.getElementById("DJname");
let DJbio8 = document.getElementById("DJbio");
let DJshowBio8 = document.getElementById("DJshowBio");
if (DJname8.innerHTML !== "Parties Of Mars")
DJname8.innerHTML = "Parties Of Mars";
if (DJbio8.innerHTML !== "Allan is all about good vibes and stress free environments. He loves all kinds of art and natural beauty, and has a whole bunch of hobbies. The most important thing for him is experiencing new things!")
DJbio8.innerHTML = "Allan is all about good vibes and stress free environments. He loves all kinds of art and natural beauty, and has a whole bunch of hobbies. The most important thing for him is experiencing new things!";
if (DJshowBio8.innerHTML !== "Good News Bears is all about spreading positivity, good news, and good music! Every time we're on we'll have some good news stories to share so that we can spread some love and positivity for Titans during this stressful semester. Between the good news, we’ll have some good music for titans on early morning Mondays!")
DJshowBio8.innerHTML = "Good News Bears is all about spreading positivity, good news, and good music! Every time we're on we'll have some good news stories to share so that we can spread some love and positivity for Titans during this stressful semester. Between the good news, we’ll have some good music for titans on early morning Mondays!";
if (DJshowLogo8.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Good-News-Bears.png')")
DJshowLogo8.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/Good-News-Bears.png')";
break;
case 9:
let text9 = "Salted's Jam n Slam";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text9)
document.getElementById("bio").innerHTML = text9;
let DJshowLogo9 = document.getElementById("DJshowLogo");
let DJname9 = document.getElementById("DJname");
let DJbio9 = document.getElementById("DJbio");
let DJshowBio9 = document.getElementById("DJshowBio");
if (DJname9.innerHTML !== "Salted")
DJname9.innerHTML = "Salted";
if (DJbio9.innerHTML !== "Salted, the guy with a thousand options and plans and hobbies but can’t decide on a single thing. Hell he couldn’t even decide if he wanted to run a music or sports channel! Whether you wanna laugh, get mad, or vibe on your own, or all at the same time, Salted’s the guy to talk to.")
DJbio9.innerHTML = "Salted, the guy with a thousand options and plans and hobbies but can’t decide on a single thing. Hell he couldn’t even decide if he wanted to run a music or sports channel! Whether you wanna laugh, get mad, or vibe on your own, or all at the same time, Salted’s the guy to talk to.";
if (DJshowBio9.innerHTML !== "Play a few songs, then in between give baseball updates, or if not bring in a contestant to have a wacky sports-related argument about")
DJshowBio9.innerHTML = "Play a few songs, then in between give baseball updates, or if not bring in a contestant to have a wacky sports-related argument about";
if (DJshowLogo9.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Salteds-Jams-and-Slams.png')")
DJshowLogo9.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/Salteds-Jams-and-Slams.png')";
break;
case 10:
let text10 = "Rockin' with El Chicano";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text10)
document.getElementById("bio").innerHTML = text10;
let DJshowLogo10 = document.getElementById("DJshowLogo");
let DJname10 = document.getElementById("DJname");
let DJbio10 = document.getElementById("DJbio");
let DJshowBio10 = document.getElementById("DJshowBio");
if (DJname10.innerHTML !== "Silver Lupe")
DJname10.innerHTML = "Silver Lupe";
if (DJbio10.innerHTML !== "Silver Lupe grew up listening to oldies and has found passion in the music. His knowledge on the singers and groups of the past is as extensive as the catalog of songs that he knows. Silver Lupe knows the best of the best of the 50s and 60s.")
DJbio10.innerHTML = "Silver Lupe grew up listening to oldies and has found passion in the music. His knowledge on the singers and groups of the past is as extensive as the catalog of songs that he knows. Silver Lupe knows the best of the best of the 50s and 60s.";
if (DJshowBio10.innerHTML !== "A mix of songs from the 50s and early 60s. Doo wop, rock & roll, and oldies that you won't ever forget. Listeners call in to chat about pop culture from the past in our current generation.")
DJshowBio10.innerHTML = "A mix of songs from the 50s and early 60s. Doo wop, rock & roll, and oldies that you won't ever forget. Listeners call in to chat about pop culture from the past in our current generation.";
if (DJshowLogo10.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/rockin-with-el-chicano.png')")
DJshowLogo10.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/rockin-with-el-chicano.png')";
break;
case 11:
let text11 = "Senior Skip Day";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text11)
document.getElementById("bio").innerHTML = text11;
let DJshowLogo11 = document.getElementById("DJshowLogo");
let DJname11 = document.getElementById("DJname");
let DJbio11 = document.getElementById("DJbio");
let DJshowBio11 = document.getElementById("DJshowBio");
if (DJname11.innerHTML !== "nala")
DJname11.innerHTML = "nala";
if (DJbio11.innerHTML !== "Nala's passion for music knows no bounds, encompassing a wide array of genres. Lately, she has immersed herself in the vibrant realm of house music. Off-campus, you'll find her DJing her friends' house parties. ")
DJbio11.innerHTML = "Nala's passion for music knows no bounds, encompassing a wide array of genres. Lately, she has immersed herself in the vibrant realm of house music. Off-campus, you'll find her DJing her friends' house parties. ";
if (DJshowBio11.innerHTML !== "Senior Skip Day isn't just a radio show; it's a journey through music's past, present, and future. Nala curates a unique blend that takes you on a sonic odyssey. From the vintage synths of the '80s to the cutting-edge beats of today's underground scene, every episode is a musical time machine.")
DJshowBio11.innerHTML = "Senior Skip Day isn't just a radio show; it's a journey through music's past, present, and future. Nala curates a unique blend that takes you on a sonic odyssey. From the vintage synths of the '80s to the cutting-edge beats of today's underground scene, every episode is a musical time machine.";
if (DJshowLogo11.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/11/seniorSkipDay.jpg')")
DJshowLogo11.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/11/seniorSkipDay.jpg')";
break;
case 12:
let text12 = "Next Door Neighbor Radio";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text12)
document.getElementById("bio").innerHTML = text12;
let DJshowLogo12 = document.getElementById("DJshowLogo");
let DJname12 = document.getElementById("DJname");
let DJbio12 = document.getElementById("DJbio");
let DJshowBio12 = document.getElementById("DJshowBio");
if (DJname12.innerHTML !== "Maya Desai")
DJname12.innerHTML = "Maya Desai";
if (DJbio12.innerHTML !== "Maya Desai is a senior transfer student majoring in Marketing. She hopes to utilize her marketing skills in the love music industry one day to get others as excited about music as she is. Maya has been a diehard Harry Styles fan since 2011 and a lover of music since 2001.")
DJbio12.innerHTML = "Maya Desai is a senior transfer student majoring in Marketing. She hopes to utilize her marketing skills in the love music industry one day to get others as excited about music as she is. Maya has been a diehard Harry Styles fan since 2011 and a lover of music since 2001.";
if (DJshowBio12.innerHTML !== "Next Door Neighbor Radio brings you music of the manic pixie dream girl next door. You’ll find music ranging from indie pop to alternative to pop rock to straight-up pop. With artists as mainstream as Harry Styles, Taylor Swift, and Phoebe Bridgers to lesser known musicians like Clairo, Ethel Cain, and The National, Next Door Neighbor Radio is here to provide you with the best sounds from the self-proclaimed cool girl’s bedroom.")
DJshowBio12.innerHTML = "Next Door Neighbor Radio brings you music of the manic pixie dream girl next door. You’ll find music ranging from indie pop to alternative to pop rock to straight-up pop. With artists as mainstream as Harry Styles, Taylor Swift, and Phoebe Bridgers to lesser known musicians like Clairo, Ethel Cain, and The National, Next Door Neighbor Radio is here to provide you with the best sounds from the self-proclaimed cool girl’s bedroom.";
if (DJshowLogo12.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/next-door-neighbor-radio.jpg')")
DJshowLogo12.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/next-door-neighbor-radio.jpg')";
break;
case 13:
let text13 = "Vic's VapoRhythms";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text13)
document.getElementById("bio").innerHTML = text13;
let DJshowLogo13 = document.getElementById("DJshowLogo");
let DJname13 = document.getElementById("DJname");
let DJbio13 = document.getElementById("DJbio");
let DJshowBio13 = document.getElementById("DJshowBio");
if (DJname13.innerHTML !== "DJ v")
DJname13.innerHTML = "DJ v";
if (DJbio13.innerHTML !== "Dj v is the sole proprietor of Vics VapoRhythm’s. Student by day, ice cream scooper by night. Allergic to peanuts and tree nuts. CDs ok.")
DJbio13.innerHTML = "Dj v is the sole proprietor of Vics VapoRhythm’s. Student by day, ice cream scooper by night. Allergic to peanuts and tree nuts. CDs ok.";
if (DJshowBio13.innerHTML !== "Let Vic's VapoRhythms invigorate your senses. Take a deep breath and take in this hour of Vics favorite tunes from all genres (from soft and soothing to unsettlingly unsoothing). Active ingredients: 97.4% A good time, 2.6% Menthol")
DJshowBio13.innerHTML = "Let Vic's VapoRhythms invigorate your senses. Take a deep breath and take in this hour of Vics favorite tunes from all genres (from soft and soothing to unsettlingly unsoothing). Active ingredients: 97.4% A good time, 2.6% Menthol";
if (DJshowLogo13.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/vicsvaporhythms.png')") //missing
DJshowLogo13.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/vicsvaporhythms.png')";
break;
case 14:
let text14 = "Docs and Crocs Radio";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text14)
document.getElementById("bio").innerHTML = text14;
let DJshowLogo14 = document.getElementById("DJshowLogo");
let DJname14 = document.getElementById("DJname");
let DJbio14 = document.getElementById("DJbio");
let DJshowBio14 = document.getElementById("DJshowBio");
if (DJname14.innerHTML !== "Tyler")
DJname14.innerHTML = "Tyler";
if (DJbio14.innerHTML !== "I think every week his music taste changes a little here and there and it always contributes to whatever he puts on” “Whether it’s new music or something classic I think his music taste is very centered around feeling which really resonates with the listener.")
DJbio14.innerHTML = "I think every week his music taste changes a little here and there and it always contributes to whatever he puts on” “Whether it’s new music or something classic I think his music taste is very centered around feeling which really resonates with the listener.";
if (DJshowBio14.innerHTML !== "We know you like to listen to a widespread range of music with your mid day cold brew, and sometimes it’s Faye Webster sometimes it’s The Cure, but no matter what the style of sound it is we listen to it because it’s good. So if you want a break from picking through your playlists for just the right song, put us on and we’ll do the picking and choosing for you. Welcome to Docs and Crocs Radio.")
DJshowBio14.innerHTML = "We know you like to listen to a widespread range of music with your mid day cold brew, and sometimes it’s Faye Webster sometimes it’s The Cure, but no matter what the style of sound it is we listen to it because it’s good. So if you want a break from picking through your playlists for just the right song, put us on and we’ll do the picking and choosing for you. Welcome to Docs and Crocs Radio.";
if (DJshowLogo14.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Docs-n-Crocs.png')")
DJshowLogo14.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/Docs-n-Crocs.png')";
break;
case 15:
let text15 = "Vinyl Vibes";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text15)
document.getElementById("bio").innerHTML = text15;
let DJshowLogo15 = document.getElementById("DJshowLogo");
let DJname15 = document.getElementById("DJname");
let DJbio15 = document.getElementById("DJbio");
let DJshowBio15 = document.getElementById("DJshowBio");
if (DJname15.innerHTML !== "Macycrafts")
DJname15.innerHTML = "Macycrafts";
if (DJbio15.innerHTML !== "Macy is in her final year studying earth science. She is a musician and artist who loves to create art and go on adventures in her free time. Her show features physical media that she has collected almost exclusively through thrifting that exemplifies her unique taste ranging from jazz and symphonic to rock and pop.")
DJbio15.innerHTML = "Macy is in her final year studying earth science. She is a musician and artist who loves to create art and go on adventures in her free time. Her show features physical media that she has collected almost exclusively through thrifting that exemplifies her unique taste ranging from jazz and symphonic to rock and pop.";
if (DJshowBio15.innerHTML !== "Come for the vinyl. Stay for the vibes. This live show is all about physical media and the joys of listening to music that you can hold in your hands. No genres, just vibes.")
DJshowBio15.innerHTML = "Come for the vinyl. Stay for the vibes. This live show is all about physical media and the joys of listening to music that you can hold in your hands. No genres, just vibes.";
if (DJshowLogo15.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')") //missing
DJshowLogo15.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break;
case 16:
let text16 = "Ant's Analytics";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text16)
document.getElementById("bio").innerHTML = text16;
let DJshowLogo16 = document.getElementById("DJshowLogo");
let DJname16 = document.getElementById("DJname");
let DJbio16 = document.getElementById("DJbio");
let DJshowBio16 = document.getElementById("DJshowBio");
if (DJname16.innerHTML !== "Anthony Manifold")
DJname16.innerHTML = "Anthony Manifold";
if (DJbio16.innerHTML !== "Anthony Manifold brings a new voice to talk show sports and introduces unique guest interviews.")
DJbio16.innerHTML = "Anthony Manifold brings a new voice to talk show sports and introduces unique guest interviews.";
if (DJshowBio16.innerHTML !== "Sports talk show")
DJshowBio16.innerHTML = "Sports talk show";
if (DJshowLogo16.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/AntsAnalyticslogo.png')")
DJshowLogo16.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/AntsAnalyticslogo.png')";
break;
case 17:
let text17 = "The Feed";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text17)
document.getElementById("bio").innerHTML = text17;
let DJshowLogo17 = document.getElementById("DJshowLogo");
let DJname17 = document.getElementById("DJname");
let DJbio17 = document.getElementById("DJbio");
let DJshowBio17 = document.getElementById("DJshowBio");
if (DJname17.innerHTML !== "TR Staff")
DJname17.innerHTML = "TR Staff";
if (DJbio17.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio17.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if (DJshowBio17.innerHTML !== "The Feed is a weekly staff segment where you can hear from the staff that support the station! Tune in each week to hear about the staff and what they're up to!")
DJshowBio17.innerHTML = "The Feed is a weekly staff segment where you can hear from the staff that support the station! Tune in each week to hear about the staff and what they're up to!";
if (DJshowLogo17.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/02/TheFeedLogo.jpg')")
DJshowLogo17.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/02/TheFeedLogo.jpg')";
break;
case 18:
let text18 = "Recess";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text18)
document.getElementById("bio").innerHTML = text18;
let DJshowLogo18 = document.getElementById("DJshowLogo");
let DJname18 = document.getElementById("DJname");
let DJbio18 = document.getElementById("DJbio");
let DJshowBio18 = document.getElementById("DJshowBio");
if (DJname18.innerHTML !== "Ari")
DJname18.innerHTML = "Ari";
if (DJbio18.innerHTML !== "Dj Arianna is the host of Recess which airs on Mondays at 6PM.")
DJbio18.innerHTML = "Dj Arianna is the host of Recess which airs on Mondays at 6PM.";
if (DJshowBio18.innerHTML !== "Recess airing Mondays at 6pm is my hour to have fun and play whatever music I’m feeling that week.")
DJshowBio18.innerHTML = "Recess airing Mondays at 6pm is my hour to have fun and play whatever music I’m feeling that week.";
if (DJshowLogo18.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/recess.jpg')") //missing
DJshowLogo18.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/recess.jpg')";
break;
case 19:
let text19 = "The Mouse Hole";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text19)
document.getElementById("bio").innerHTML = text19;
let DJshowLogo19 = document.getElementById("DJshowLogo");
let DJname19 = document.getElementById("DJname");
let DJbio19 = document.getElementById("DJbio");
let DJshowBio19 = document.getElementById("DJshowBio");
if (DJname19.innerHTML !== "DJ Peach Rat")
DJname19.innerHTML = "DJ Peach Rat";
if (DJbio19.innerHTML !== "DJ Peach Rat not only brings a wide variety of music to his house, but also brings a lot of thoughts and observations about the world. From the mundane to the unique, he always has observations and thoughts that are best said out loud. Life is too short to leave things unheard and unsaid.")
DJbio19.innerHTML = "DJ Peach Rat not only brings a wide variety of music to his house, but also brings a lot of thoughts and observations about the world. From the mundane to the unique, he always has observations and thoughts that are best said out loud. Life is too short to leave things unheard and unsaid.";
if (DJshowBio19.innerHTML !== "Enjoy a wide variety of genres? Then, walk through the door and enter this hole of musical whiplash, where there's no such thing as a stranger. Come for the music, stay for the thoughts. Everyone's welcome in this little hole.")
DJshowBio19.innerHTML = "Enjoy a wide variety of genres? Then, walk through the door and enter this hole of musical whiplash, where there's no such thing as a stranger. Come for the music, stay for the thoughts. Everyone's welcome in this little hole.";
if (DJshowLogo19.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/The-Mouse-Hole.jpg')")
DJshowLogo19.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/The-Mouse-Hole.jpg')";
break;
case 20:
let text20 = "The Jam";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text20)
document.getElementById("bio").innerHTML = text20;
let DJshowLogo20 = document.getElementById("DJshowLogo");
let DJname20 = document.getElementById("DJname");
let DJbio20 = document.getElementById("DJbio");
let DJshowBio20 = document.getElementById("DJshowBio");
if (DJname20.innerHTML !== "Reagan Gift")
DJname20.innerHTML = "Reagan Gift";
if (DJbio20.innerHTML !== "Reagan finds herself to be somewhat of a musical nomad. Never sitting in one genre too long, always on the hunt for a new record to call home. Maybe it’s her love for all music, maybe it’s ADD.")
DJbio20.innerHTML = "Reagan finds herself to be somewhat of a musical nomad. Never sitting in one genre too long, always on the hunt for a new record to call home. Maybe it’s her love for all music, maybe it’s ADD.";
if (DJshowBio20.innerHTML !== "For the self proclaimed musical sponges of the world. R&B, Alternative Rock, Reggae, Indie, Soul, Funk and so much more. Tune into the soundtrack of life.")
DJshowBio20.innerHTML = "For the self proclaimed musical sponges of the world. R&B, Alternative Rock, Reggae, Indie, Soul, Funk and so much more. Tune into the soundtrack of life.";
if (DJshowLogo20.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo20.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break;
case 21:
let text21 = "The Kickback Hour";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text21)
document.getElementById("bio").innerHTML = text21;
let DJshowLogo21 = document.getElementById("DJshowLogo");
let DJname21 = document.getElementById("DJname");
let DJbio21 = document.getElementById("DJbio");
let DJshowBio21 = document.getElementById("DJshowBio");
if (DJname21.innerHTML !== "DJ K")
DJname21.innerHTML = "DJ K";
if (DJbio21.innerHTML !== "DJ K is a Senior Communications major and a native to SoCal. Outside of Titan Radio, he can be seen grabbing a coffee, hanging out with friends, or hitting the beach. His show is open to all genres and invites all Titans to listen.")
DJbio21.innerHTML = "DJ K is a Senior Communications major and a native to SoCal. Outside of Titan Radio, he can be seen grabbing a coffee, hanging out with friends, or hitting the beach. His show is open to all genres and invites all Titans to listen.";
if (DJshowBio21.innerHTML !== "The Kickback Hour is a show where all music is welcome! Each week, various genres are played through the episodes. Not only will there be music, but guests are welcome to add their own take on music and chat with DJ K himself about music, their lives, and anything else that comes to mind!")
DJshowBio21.innerHTML = "The Kickback Hour is a show where all music is welcome! Each week, various genres are played through the episodes. Not only will there be music, but guests are welcome to add their own take on music and chat with DJ K himself about music, their lives, and anything else that comes to mind!";
if (DJshowLogo21.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/The-Kickback-Hour.jpg')")
DJshowLogo21.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/The-Kickback-Hour.jpg')";
break;
case 22:
let text22 = "The Harrison The Goofball Show";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text22)
document.getElementById("bio").innerHTML = text22;
let DJshowLogo22 = document.getElementById("DJshowLogo");
let DJname22 = document.getElementById("DJname");
let DJbio22 = document.getElementById("DJbio");
let DJshowBio22 = document.getElementById("DJshowBio");
if (DJname22.innerHTML !== "Harrison The Goofball")
DJname22.innerHTML = "Harrison The Goofball";
if (DJbio22.innerHTML !== "I am Harrison The Goofball and I am your wacky radio dj. Tune into my show to hear all the best music from the likes of Weird Al, Cheech and Chong, Adam Sandler, and more!")
DJbio22.innerHTML = "I am Harrison The Goofball and I am your wacky radio dj. Tune into my show to hear all the best music from the likes of Weird Al, Cheech and Chong, Adam Sandler, and more!";
if (DJshowBio22.innerHTML !== "Comedy/novelty songs, bits, skits, and games.")
DJshowBio22.innerHTML = "Comedy/novelty songs, bits, skits, and games.";
if (DJshowLogo22.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/harrison-the-goofball.jpg')")
DJshowLogo22.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/harrison-the-goofball.jpg')";
break;
case 23:
let text23 = "Brain Damage";
// Change innerHTML of bio to text
if (document.getElementById("bio").innerHTML !== text23)
document.getElementById("bio").innerHTML = text23;
let DJshowLogo23 = document.getElementById("DJshowLogo");
let DJname23 = document.getElementById("DJname");
let DJbio23 = document.getElementById("DJbio");
let DJshowBio23 = document.getElementById("DJshowBio");
if (DJname23.innerHTML !== "user12151920")
DJname23.innerHTML = "user12151920";
if (DJbio23.innerHTML !== "user12151920 loves music!!! (she has an unhealthy relationship with anything that makes sound). with her inevitable screaming and crying to the ridiculous number of songs saved onto all of her music streaming apps she hopes to be able to share and appreciate the music she loves with others.")
DJbio23.innerHTML = "user12151920 loves music!!! (she has an unhealthy relationship with anything that makes sound). with her inevitable screaming and crying to the ridiculous number of songs saved onto all of her music streaming apps she hopes to be able to share and appreciate the music she loves with others.";
if (DJshowBio23.innerHTML !== "music I listen to when I'm staring at my glow in the dark ceiling stars at 3 am - thought vomit and nice noise.")
DJshowBio23.innerHTML = "music I listen to when I'm staring at my glow in the dark ceiling stars at 3 am - thought vomit and nice noise.";
if (DJshowLogo23.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2023/10/Brain-Damage.jpg')")
DJshowLogo23.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2023/10/Brain-Damage.jpg')";
break;
}
break
case 2: //TUESDAY
switch(nextDate.getHours()) {
case 0:
let text0 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text0)
document.getElementById("bio").innerHTML = text0;
//change the image to the DJ's image DJshowLogo
let DJshowLogo0 = document.getElementById("DJshowLogo");
let DJname0 = document.getElementById("DJname");
let DJbio0 = document.getElementById("DJbio");
let DJshowBio0 = document.getElementById("DJshowBio");
if(DJname0.innerHTML !== "TR Staff")
DJname0.innerHTML = "TR Staff";
if(DJbio0.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio0.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio0.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio0.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo0.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo0.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 1:
let text1 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text1)
document.getElementById("bio").innerHTML = text1;
//change the image to the DJ's image DJshowLogo
let DJshowLogo1 = document.getElementById("DJshowLogo");
let DJname1 = document.getElementById("DJname");
let DJbio1 = document.getElementById("DJbio");
let DJshowBio1 = document.getElementById("DJshowBio");
if(DJname1.innerHTML !== "TR Staff")
DJname1.innerHTML = "TR Staff";
if(DJbio1.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio1.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio1.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio1.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo1.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo1.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 2:
let text2 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text2)
document.getElementById("bio").innerHTML = text2;
//change the image to the DJ's image DJshowLogo
let DJshowLogo2 = document.getElementById("DJshowLogo");
let DJname2 = document.getElementById("DJname");
let DJbio2 = document.getElementById("DJbio");
let DJshowBio2 = document.getElementById("DJshowBio");
if(DJname2.innerHTML !== "TR Staff")
DJname2.innerHTML = "TR Staff";
if(DJbio2.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio2.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio2.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio2.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo2.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo2.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 3:
let text3 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text3)
document.getElementById("bio").innerHTML = text3;
//change the image to the DJ's image DJshowLogo
let DJshowLogo3 = document.getElementById("DJshowLogo");
let DJname3 = document.getElementById("DJname");
let DJbio3 = document.getElementById("DJbio");
let DJshowBio3 = document.getElementById("DJshowBio");
if(DJname3.innerHTML !== "TR Staff")
DJname3.innerHTML = "TR Staff";
if(DJbio3.innerHTML !== "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.")
DJbio3.innerHTML = "Titan Radio staff are a group of talented and dedicated individuals who work tirelessly to bring quality radio programs to their listeners. They are passionate about music and knowledgeable about the industry, and they go above and beyond to create an engaging and enjoyable listening experience for their audience. With their diverse backgrounds and personalities, the Titan Radio staff is a dynamic and creative team that never fails to impress.";
if(DJshowBio3.innerHTML !== "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.")
DJshowBio3.innerHTML = "TR2 is like a musical potluck where all the staff brings their favorite songs to share with the listeners. It's a great way to discover new music and learn more about the people behind the station. From classic rock to electronic dance music, the variety of genres is amazing. You never know what you're going to get, but one thing is for sure, it's always good stuff.";
if (DJshowLogo3.style.backgroundImage !== "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')")
DJshowLogo3.style.backgroundImage = "url('https://titanradio.org/wp-content/uploads/2022/09/TItan_Radio_Mobile_Logo_1024x1024.png')";
break
case 4:
let text4 = "Titan Radio";
//change innerHTML of bio to text
if(document.getElementById("bio").innerHTML !== text4)
document.getElementById("bio").innerHTML = text4;
//change the image to the DJ's image DJshowLogo