How to use

Exhibition.Vertical.js use becomes as follows.

HTML

The mark putting of HTML becomes as follows.

    <div id="container">
        <ul id="exhibition">
            <li><a href="#"><img src="../Demos/images/home/img_tn1.jpg" width="152" height="228" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn2.jpg" width="218" height="147" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn3.jpg" width="154" height="191" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn4.jpg" width="167" height="233" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn5.jpg" width="301" height="187" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn6.jpg" width="167" height="221" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn7.jpg" width="251" height="167" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn8.jpg" width="182" height="213" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn9.jpg" width="249" height="178" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn10.jpg" width="159" height="238" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn1.jpg" width="152" height="228" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn2.jpg" width="218" height="147" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn3.jpg" width="154" height="191" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn4.jpg" width="167" height="233" /></a></li>
            <li><a href="#"><img src="../Demos/images/home/img_tn5.jpg" width="301" height="187" /></a></li>
        </ul>
    </div>

CSS

The description of CSS becomes as follows.
It becomes full screen specifying 100% in height for body and the html element.

div#container {
	overflow: hidden;
}

ul#exhibition {
	overflow: hidden;
	list-style: none;
	position: relative;
	margin: 0px auto 0px auto;
}

ul#exhibition li {
	position: absolute;
}

ul#exhibition li a {
	display: block;
	padding: 10px;
	background: #333333;
}

ul#exhibition li a:hover {
	background: #3c94af;
}

ul#exhibition li.active a {
	background: #3c94af;
}

Javascript

Javascript is described at the end. The height of the screen is acquired and it specifies it for container element (div#container,ul#exhibition).
It is necessary to note it because it doesn't become full screen if this processing is not done.

window.addEvent("domready", function() {

	var height = (Browser.Engine.trident && Browser.Engine.version <= 6) ? document.documentElement.clientHeight : window.innerHeight;
	var container = $("container");
	var exhibition = $("exhibition");

	container.setStyle("height", height);
	exhibition.setStyle("height", height);

	var images = exhibition.getElements("li");
	new Exhibition.Vertical(exhibition, images, {"defaultIndex": Math.round((images.length - 1)/2)});
});