I'm working on a plant identification site where we want people to be able to easily locate a specific plant in a photo. Each plant in the photo area is contained in a div, and I'd like to make an arrow (like in the image here: http://www.plantiferate.com/ArrowExample2.jpg) which goes from a point in the right plant list (the left edge/vertical middle of the text "Autumn Blaze Pear") to the right edge/vertical middle of a div located over the area of the red pear tree in the photo.
Here's a simplified version of what I've got right now, without the arrow. Any ideas how to accomplish something like this using CSS and/or JQuery? Thanks!
<div class="photoareacontainer">
<div class="photoarea">
<img src="URL" class="photobackground" width="800" height="600" />
<div class="highlight-region" ID="autumnblazepearphoto"
style="top:400px;left:200px; width:300px; height:#300px;" title="Autumn Blaze Callery Pear: ..."></div>
<div class="highlight-region" ID="weepingwillowphoto"
style="top:350px;left:500px; width:300px; height:#300px;" title="Weeping Willow: ..."></div>
</div>
<div class="photocontentsarea">
<a href="#">Autumn Blaze Pear</a><br />
<a href="#">Weeping Willow</a><br />
</div>