Okay so we are using prettyPhoto and we got one of our developers to code a modification for us.
http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/
We have rewritten some of our script, and currently the script is outputting our thumbnails in a carousel like so:
<div class="clearfix" id="carousel">
<ul>
<li>
<a href="javascript:;"><img title="4e76d6d9c050a.jpg"></a>
</li>
<li>
<a href="javascript:;"><img title="4e788e5c20e97.jpg"></a>
</li>
</ul>
</div>
Basically, we pass the image name via title, as we do other things with this and we can't have it loading in a src tag.
When it gets to prettyPhoto, the carousel is echoed like the above code.
Here is our javascript:
$("#carousel ul li a").live("click",function(){
$("#carousel ul li a").find("img").removeClass("chover");
var index = $("#carousel ul li").index($(this).parent());
$("#counter").val(index);
$(this).find("img").addClass("chover");
_hideContent(function(){ $.prettyPhoto.open(images,titles,descriptions) });
});
_centerOverlay(); // Center it
$("#carousel").html($("#thumbnail-area>ul").clone());
$("#ads-box").html($("#ads").html());
gapi = $("#carousel").scrollable({ api:true , circular:false });
$(".pp_content").hover(function(){
$(".pp_details").stop(true,true).animate({bottom:0},500);
},function(){
$(".pp_details").stop(true,true).animate({bottom:-35},300);
});
I may have missed some of the closing brackets, but this is basically what is used to put that HTML into the carousel (afaik).
This is what we want to happen:
The image title tag from above, is passed across to a src for the image, and then the src is prefixed.
For example:
<li>
<a href="javascript:;"><img title="4e76d6d9c050a.jpg"></a>
</li>
Will become:
<li>
<a href="javascript:;"><img src="http://www.site.com/images/folder/4e76d6d9c050a.jpg"></a>
</li>
How can we do this?