My guess is I lose color box (the ability to open up the single image with the overlay) because of javascript conflicts when using mironb's script above. So I'd like to use the cycle plugin, but I can't get it to "wake up"...
Here's what I'm using IAW the demo of how to fade in the first picture from their website:
``$(function() {
$('#slideshow img:first').fadeIn(1000, function() {
$('#slideshow').cycle();
});
});``
I've inserted this code on image.php and changed the id of the image accordingly:
```printCustomSizedImageMaxSpace(getBareImageTitle(), 650, 450, false, 'slideshow')`
So next I'm thinking well I've got to hide it first with css, and then fadeIn (or .'show'), I've tried the following all successfully hiding the image, but it never appears:
``
$('#slideshow').css('opacity','0');
$('#slideshow').css('visibility','hidden');
$('#slideshow').css('display','none');
<pre>[code][/code]
So the complete code in my header section right now looks like this:
[code]`
$(function() {
$('#slideshow').css('opacity','0');
$('#slideshow img:first').fadeIn(1000, function() {
$('#slideshow').cycle();
});
});
`[/code]
A related question: What is the full file path to the actual plugin?
Thank you again for helping me.