SavaSavichev,
строка 7 выкинуть и забыть, строку 6 можно тоже забыть
версия 1.1 сейчас версия 3
http://archive.slidesjs.com/ -- можно незабывать но переставить после строки 8 -- сначала грузится
jquery 1 штука потом всё что работает на основе jquery а ненаоборот.
примерно как это должно быть вариант ниже
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<base href="http://slidesjs.com/examples/playing/" />
<title>Документ без названия</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/jquery.slides.min.js"></script>
<script>
$(function(){
$(".button").click(function () {
$(this).parent().next().slideToggle();
return false
});
$('#slides').slidesjs({
width: 500,
height: 300,
play: {
active: true,
auto: true,
interval: 4000,
swap: true,
pauseOnHover: true,
restartDelay: 2500
}
});
});
</script>
<style type="text/css">
.toogle {display:none;}
</style>
<link rel="stylesheet" href="css/example.css">
</head>
<body>
<div id="wrapper">
<div class="container">
<div id="slides">
<img src="img/example-slide-1.jpg" alt="Photo by: Missy S Link: http://www.flickr.com/photos/listenmissy/5087404401/">
<img src="img/example-slide-2.jpg" alt="Photo by: Daniel Parks Link: http://www.flickr.com/photos/parksdh/5227623068/">
<img src="img/example-slide-3.jpg" alt="Photo by: Mike Ranweiler Link: http://www.flickr.com/photos/27874907@N04/4833059991/">
<img src="img/example-slide-4.jpg" alt="Photo by: Stuart SeegerLink: http://www.flickr.com/photos/stuseeger/97577796/">
</div>
</div>
<div>Текст1</div>
<div><a class="button" href="#">Подробнее</a></div>
<div class="toogle">Текс2</div>
<div id="footer"></div>
</div>
</body>
</html>