Jquery Cycle Plugin - IE6/7 issue with nested div

Jquery Cycle Plugin - IE6/7 issue with nested div

Hi,

I'm working on this site:  http://popularforces.com/Metajure/WWW_1.2/ and using the Cycle plugin.
We're using it to cycle trough the job titles under "Meet Our Team", I like the plugin it's very nice and elegant.

I'm new to using Jquery and racking my brain on IE6/7. It seems like the problem is that we're nesting the div with the rotated text and to call the #Links div, I have it like this:

$(document).ready(function() {

        $('.homenews ul li #Links').cycle('fade');

});

W/o the ".homenews ul li", Safari, FF, Chrome, IE8 wouldn't work, but with them in, IE6/7 won't work. If I un-nest the #Links div out and just put in outside of any other divs, etc. and then change the function to:

$(document).ready(function() {

        $('#Links').cycle('fade');

});

everything works fine in all browsers so it makes me think I'm not calling that Div correctly. Not really sure how to do it though. Hoping someone can give me some pointers.

Thanks