/**
 *
 * This file stores the js functions for about.php
 *
 * @author     Vera Kern <vera@worksmartlabs.com>
 * @copyright  2010 WorkSmart Labs, Inc.
 * 
 * TODO(vera): Make this a class.
 */

/**
 * Starts the slideshow of the screenshots.
 * 
 * @param value value to increase the background position with.
 */
function startSlideshow (value) {
    el("screenshots").style.backgroundPosition = -value + "px 0px";
    newValue = (value + 149) % 894;
    setTimeout("startSlideshow(" + newValue + ")",2500)
}
