## General
____________
### Author
* Josh McIntyre
### Website
* jmcintyre.net
### Overview
* Daguerrotype provides a simple photo slideshow library
## Development
________________
### Git Workflow
* master for releases (merge development)
* development for bugfixes and new features
### Building
* make build
Build the library
* make clean
Clean the build directory
### Features
* Ability to specify photo directory and filenames
* Ability to specify viewer size
### Requirements
* Requires Javascript
### Platforms
* Firefox
* Chrome
## Usage
____________
### Library Usage
* Include the Daguerrotype library and configuration scripts
`<script src="daguerrotype.js" type="text/javascript"></script>`
`<script src="daguerrotypeConfig.js" type="text/javascript"></script>`
* Add a photo container div with the id named in the Daguerrotype configuration file
`<div id="sample_photo_container"></div>`
* Add previous and next buttons that call your slideshow instances' previous and next functions
`<div>`
`<button type="button" onclick="sampleSlideshow.previous()" class="photo_button">Previous</button>`
`<button type="button" onclick="sampleSlideshow.next()" class="photo_button">Next</button>`
`</div>`