<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

  <head>
    <title>DamnSimpleSlideshow Readme -Examples -Instructions</title>
    <meta content="">
    <style>
.slideElement {
background-color:white;
height:429px;
width:580px;
border:1px solid #a7a7a7;
}
#myGallery{
 
left: 0px;
position:relative;
height:470px;
z-index:0;
}
.descr{
padding:0px;font-family:Courier;
margin-bottom:20px;
color: #29211b;

}
h3 {text-align:center;color:orange;font-family:Courier;letter-spacing:4px;font-size:2.1em;text-decoration:underline;margin:20px;padding:0}
#container{
width:584px;
margin:auto;
padding:0px;
}
.tip{
margin:10px;
font-size:13px;
font-weight:200;
color:#4d2c12;
}

code{
color:#4d2c12;font-size:11px;
}
</style>
  </head>
  <body>
<script type="text/javascript" src="DamnSimpleSlideshow.js"></script>
	<script type="text/javascript">
	
	
	function startGallery() {

		myGal = new DamnSimpleSlideshow('myGallery');
		myGal.initialize();
	}	
	addLoadEvent(startGallery);
	</script>
<div id ='container'>
	<div class='descr'>
	<h3>DamnSimpleSlideshow</h3>
	Presenting the DamnSimpleSlideshow . <br/>
	A simple JavaScript that performs a slideshow with a fade out/in effect.<br/>
	No mootools ,jquery and other satanic frameworks that conflict and create havoc ,here!<br/>
	This is less than 100 lines of Ansi javascript.<br>
	For how to use just view source.<hr/>
	<div class='tip'>(container element (#myGallery) must be position:relative ,left:0 , height of your images ,.slideElement must have the size of your images -- SEE CSS in source)</div><hr/>
<br>
 
	
	</div>
	<div id="myGallery"  >
		<div><img src="tambela_580.png"  style='display:none'/></div>
		<div><img src="DSC08814_580.JPG"   style='display:none'/></div>
		<div><img src="pournaria_n580.jpg"  style='display:none'/></div>
	</div>
	<hr/>
	<code  >
	 
	// This is Free software.<br>
	// License BSD ( you can profit from it but then send me some cash (or a bottle of scotch))<br>
	// 08 Feb 2011 by Thimios Katsoulis , info@pure-ingredients.net , thkatsou@yahoo.gr<br>
	// More work and contact at www.pure-ingredients.net<br>

	</code><hr/><br><br> 
</div>	 
	

</body>
</html>