Hey guys, quick question. I am new to Jquery and just need a bit of assistance. I want to create an image gallery with one div holding all of my thumbnails (.thumbs) and the second div (which would be to the right of the thumbnails) would be an enlarged image of the thumbnail that you rollover (.enlarged). The enlarged image will be hidden, but when you rollover a thumbnail it will show that image enlarged in the ".enlarged" div. I am not sure how execute this, maybe use the title from the thumbnail? If you can show me an example of what the Jquery code would look like for that, or have a link to a tutorial or any help I would be greatly appreciative, thank you so much. The HTML code would looks something like:
<div class="thumbs">
<img src="img/image1_thumb.jpg" title="image1.jpg" />
<img src="img/image2_thumb.jpg" title="image2.jpg" />
<img src="img/image3_thumb.jpg" title="image3.jpg" />
<img src="img/image4_thumb.jpg" title="image4.jpg" />
<img src="img/image5_thumb.jpg" title="image5.jpg" />
</div>
<div class="enlarged">
<img title="image1.jpg"/>
<img title="image2.jpg"/>
<img title="image3.jpg"/>
<img title="image4.jpg"/>
<img title="image5.jpg"/>
</div>