I have a div containing 4 images in a row and a div the length of all 4 on the next row.
What I want to do is apply the hover and toggleclass functions so that when you hover over each of the 4 top row images the div below's background image changes. Is this possible? How would I do it?
<div id="float3_1">
<img id= "twit" src= "face.jpg" width= "240px">
<img id = "twit" src= "twit.jpg" width= "240px">
<img id= "twit" src= "goog.jpg" width= "240px">
<img idc= "twit" src= "insta.jpg" width= "240px">
<div class="divbelow"></div>
</div>
<script type= "text/javascript">
$('#twit').hover(function () {
$(.divbelow).toggleClass('image1', 500);
}, function () {
$(this).toggleClass('image1', 1000 );
});
</script>