/**
 * Contains the javascripts, may use Dojo Toolkit
 *
 * @author Robbert Korving <r.korving@gmail.com>
 * @copyright 2009, Robbert Korving
 * @package scripts
 */

var globalImage;

function displayPage()
{
    window.location.assign('http://www.companyfilms.nl/nl/showreel');
}

function displayImage(image)
{
    if (globalImage != image) {
        html = '<img src="http://www.companyfilms.nl/public/images/' + image + '.jpg"></img>'
        dojo.byId('atmosphere').innerHTML = html;
        globalImage = image;
    }
}