Измените для начала теги вопроса на html, javascript, jquery.
Касательно вопроса, то:
Вы должны подключить все скрипты и библиотеку jQuery перед закрытием тега
</head>, а не в <body>.
А инициализацию скрипта
<script type="text/javascript">
$(function () {
//Load the image URLs into an Array.
var arr = new Array();
$("#dvImages img").each(function () {
arr.push($(this).attr("src"));
});
//Set the first image URL as source for the Product.
$("#product1, #product2, #product3").attr("src", arr[0]);
//Click mode.
$("#product1").threesixty({ images: arr,
method: 'click',
sensibility: 2
});
});
</script>
Перед закрывающимся тегом
</body>
https://jsfiddle.net/n6Ldkj9x/ - как должно быть.