Sorry, I didn't mention there is a banner that slides up/down with each new image and that is what that bit of code (slideDown slideUp) refers to. I believe ".desc" refers to the description of the image.
I will post a screenshot of the site but that is all I can do other than post code.
I think the part I need to change is here
Code:
//Slider Animation
$(".image_reel").animate({
left: -image_reelPosition
}, 500 );
and/or here?
Code:
//Rotation + Timing Event
rotateSwitch = function(){
$(".desc").eq( $('.paging a.active').attr("rel") - 1 ).slideDown("slow");
play = setInterval(function(){ //Set timer - this will repeat itself every 3 seconds
$active = $('.paging a.active').next();
if ( $active.length === 0) { //If paging reaches the end...
$active = $('.paging a:first'); //go back to first
}
rotate(); //Trigger the paging and slider function
}, 5000); //Timer speed in milliseconds (3 seconds)
};
rotateSwitch(); //Run function on launch