The main idea is to get some effect animating divs in my page. First, the main clues:
<ul class="institucional-menu">
<li class="insmenu" id="Historia">Historia Fundacional</li>
<li class="insmenu" id="Autoridades">Autoridades</li>
<li class="insmenu" id="Balance">Balance</li>
</ul>
When pointer is over some menu option, a div on the right moves and shows an image according to each option, which will be there until next user mouse movement over other different option. In the first action (the first user movement over some option) is ok, the problem begins from the second and higher actions, because the previous IMG is there, so I need to move the div to right ( creating the effect that it goes away to take another img) and return it from the right to the left with the new img charged inside.
Here is my Javascript:
jQuery('.insmenu').mouseover(function(){
jQuery('#imgcontainer').animate({
left: '1024px',
opacity: '1'
});
jQuery('#imgcontainer').queue(function(){
jQuery('#imgcontainer').attr("src", e.id+'.jpg');
jQuery('#imgcontainer').animate({
left: '0px',
opacity: '1'
});
});
});
I was trying all day long to first move away the dive, then charge image, and finally return that div. But I could not. Any recommendation?
Thank you very much!
PD: "e.id" tries to be the value of the element that has been "hovered" (I do not know how to say it, and if this verb exists) for example id="Historia", images have the same name like the ID value on each

e.id? and can you post the markup for#imgcontainer? – Mark Schultheiss Apr 24 '12 at 18:03