box lloyd light is jQuey overlay gallery plugin.

Demo

How to use it

Download the latest jQuery

http://jquery.com/

Download the latest Box Lloyd Light plugin

jQuery Box Lloyd Light plugin

Add the following code to your <head>


<script src="/yourpath/jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="/yourpath/jquery.boxlloydlight.js" type="text/javascript"></script>
<script type="text/javascript">
    $(function(){
        $('.gallery a').boxLloydLight();
    });
</script>
<link media="screen" type="text/css" href="/yourpath/boxlloydlight.css" rel="stylesheet" />
        

Set your gallery like following code


<div class="gallery" >
    <a href="/yourpath/big_image_1.jpg" ><img src="/yourpath/small_image_1.jpg" title="title1" /></a>
    <a href="/yourpath/big_image_2.jpg" ><img src="/yourpath/small_image_2.jpg" title="title2" /></a>
    ...
</div>