Aight, thanks!
I assume it's this script I have to change, tried lots of different things but I really can't get it to work.
Anyone who can push me into the right direction?
Code:
<script type="text/javascript">
$(document).ready(function() {
var origsrc = $("#productMainImage a img").attr("src");
$("#productAdditionalImages .additionalImages a img").hover(
function () {
$("#productMainImage a img").attr('src', this.src);
},
function () {
$("#productMainImage a img").attr('src', origsrc);
}
);
});
</script>