<script type="text/javascript">
$("img#front-image-one").hover(function() {
$("img#front-image-two").addClass("hover");
$("img#front-image-three").addClass("hover");
$("img#front-image-four").addClass("hover");
},
function () {
$("img#front-image-two").removeClass("hover");
$("img#front-image-three").removeClass("hover");
$("img#front-image-four").removeClass("hover");
});
</script>
|