views:

227

answers:

0

Hi I am using the following code for my banner. I have got 6 set up. what I want to do is specify the time each one appears for. I can change this for all of them but I want to set them indivdually?

http://webdeveloperplus.com/jquery/f...ry-ui/#respond

The bit of code that chnages the speed is. How can I indvidual set each of the 6 banners to be different?

[CODE] $(document).ready(function(){

$("#featured > ul").tabs({fx:{opacity: "toggle"}}).tabs("rotate", 5000, true);

$(".ui-tabs-panel > a").hover(
function() {
$("#featured").tabs("rotate",0,true);
},
function() {
$("#featured").tabs("rotate",5000,true);
}
); [/CODE]

Can you let me know if this is at all possible to do?

Thanks in advance for any help.