I'm in the process of setting up a rotating image banner with "arrow" overlays for when one of the 5 banners is selected. I've created my divs but I'm not sure what my next steps should be. Should I format the Banner1-Banner5 descriptions as an UNORDERED LIST with LIST ITEMS and change the styles? Or should I keep them as separate div's like I have below? Additionally, I'm unsure of how to implement the "arrow" overlay when a specific banner description is chosen. See the image below for how the final banner should look. My framework code can also be found below.
<!-- hp banner start -->
<div id="hp-banner">
<div id="hp-banner-left">
BANNER IMAGE
</div>
<div id="banner-right">
<div id="banner-right-1">
BANNER 1 DESCRIPTION
</div>
<div id="banner-right-2">
BANNER 2 DESCRIPTION
</div>
<div id="banner-right-3">
BANNER 3 DESCRIPTION
</div>
<div id="banner-right-4">
BANNER 4 DESCRIPTION
</div>
<div id="banner-right-5">
BANNER 5 DESCRIPTION
</div>
</div>
<!-- hp banner end -->
</div>