Check out the website, below the map you'll find an unordered list:
HTML code:
<ul class="play_navigation">
<li class="active"><a href="#" class="barino_story_bottom">The Story</a></li>
<li><a href="#" class="barino_video_bottom">The Video</a></li>
<li><a href="#" class="barino_gallery_bottom">The Gallery</a></li>
<li><a href="#" class="barino_equipment_bottom">The Equipment</a></li>
</ul>
CSS styles:
ul.play_navigation {
list-style:none;
padding:0;
}
ul.play_navigation li {
display: inline;
}
ul.play_navigation li a {
color: #00506B;
font-family: Helvetica,sans-serif;
font-weight: bold;
padding-right: 34px;
text-decoration:none;
margin-left: 18px;
}
ul.play_navigation li.active {
background:url(images/play-button.png) no-repeat left;
}
Everything looks good, but I'm facing an issue. The play button isn't clickable as it's currently within an li element. I also need to move the active play button to the link that is clicked by the user. I was thinking of using jQuery to add/remove classes, but with some animation effects. Any suggestions for implementing this?