Now i give u another problem about Jquery about slideshow this time.
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My slideshowz</title>
<script language="javascript" type="text/javascript" src="Js/jquery-1.10.2.js"></script>
<script language="javascript" type="text/javascript" src="Js/jquery_cycle.js"></script>
<link href="Css/Style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="Big">
<img src="Img/1.jpg" />
<img src="Img/2.jpg" />
<img src="Img/3.jpg" />
<img src="Img/4.jpg" />
<img src="Img/5.jpg" />
</div>
<div id="Small">
<img src="Img/1a.jpg" id="imgv" />
<img src="Img/2a.jpg" id="imgw" />
<img src="Img/3a.jpg" id="imgx" />
<img src="Img/4a.jpg" id="imgy" />
<img src="Img/5a.jpg" id="imgz" />
</div>
<script type="text/javascript">
var v='<img src="Img/1.jpg"/>';
var w='<img src="Img/2.jpg"/>';
var x='<img src="Img/3.jpg"/>';
var y='<img src="Img/4.jpg"/>';
var z='<img src="Img/5.jpg"/>';
//Slideshow Jquery normal
var ciclo = $(function(){
$('#Big img:gt(0)').hide();
setInterval(function(){$('#Big :first-child').toggle("slow").next('img').toggle("slow").end().appendTo('#Big');}, 3000);
});
$("#imgv").click(function(){
$("#Big").text("");
$("#Big").append(v);
});
$("#imgw").click(function(){
$("#Big").text("");
$("#Big").append(w);
});
$("#imgx").click(function(){
$("#Big").text("");
$("#Big").append(x);
});
$("#imgy").click(function(){
$("#Big").text("");
$("#Big").append(y);
});
$("#imgz").click(function(){
$("#Big").text("");
$("#Big").append(z);
});
</script>
</body>
</html>
I have try to make myself a simple slideshow for homework.
It's work at 80%, i mean that if i refresh the page the slideshow work correctly with fadein-fadeout, if i click on the little thumbnail i can change image, but after halfsecond that i have clicked on thumbnail image fadeout and all slideshow got broken

Is it possible stop the slideshow for X seconds the slideshow and after X seconds it autorestart?