I'm still not sure I get the complete picture here, though if the goal is basically to have the b/w thumbnails when clicked on, apply a border to the currently clicked on thumbnail while "unbordering" any the previous one, try adding a script like the below following your thumbnails' markup:
Code:
<div id="mygallery" class="stepcarousel">
<div class="belt">
<div class="panel" id="ref_bild_01"><a href="index.html"><img src="../referenzbilder/sw/01.jpg" alt="geffen apartment" /></a></div>
<div class="panel" id="ref_bild_02"><a href="index_02.html"><img src="../referenzbilder/sw/02.jpg" alt="boston university"/></a></div>
<div class="panel" id="ref_bild_03"><a href="index_03.html"><img src="../referenzbilder/sw/03.jpg" /></a></div>
<div class="panel" id="ref_bild_04"><a href="index_04.html"><img src="../referenzbilder/sw/04.jpg" /></a></div>
<div class="panel" id="ref_bild_05"><a href="index_05.html"><img src="../referenzbilder/sw/05.jpg" /></a></div>
<div class="panel" id="ref_bild_06"><a href="index_06.html"><img src="../referenzbilder/sw/06.jpg" /></a></div>
<div class="panel" id="ref_bild_07"><a href="index_07.html"><img src="../referenzbilder/sw/07.jpg" /></a></div>
<div class="panel" id="ref_bild_08"><a href="index_08.html"><img src="../referenzbilder/sw/08.jpg" /></a></div>
<div class="panel" id="ref_bild_09"><a href="index_09.html"><img src="../referenzbilder/sw/09.jpg" /></a></div>
<div class="panel" id="ref_bild_10"><a href="index_10.html"><img src="../referenzbilder/sw/10.jpg" /></a></div>
</div>
</div>
<script type="text/javascript">
var $allimages=jQuery('.belt img')
$allimages.click(function(){
$allimages.css('border-bottom-width', 0)
jQuery(this).css('borderBottom', '4px solid darkred')
})
</script>
As you click on one of the b/w pictures, a bottom border gets added to it. Furthermore, if a border existed on another thumbnail due to a previous click on that one, that border is removed.
Bookmarks