/// <reference path="../../libraries/jquery/js/jquery-1.3.2-vsdoc2.js"/>

$(function() 
{
    var imageList =
    [
        "01", "02", "03", "04", "05", "06",
        "07", "08", "09", "10", "11", "12"
    ];

    var slideshow = $("#slideshow");
    
    $(slideshow).html("");
    
    for (var i = 0; i < imageList.length; i++)
    {
        $(slideshow).append('<img src="/images/gallery/gallery-' + imageList[i] + '.jpg" alt="Gallery Picture" width="627" height="470" />');
    }
     
    $("#slideshow").cycle
    ({
        fx:         'turnUp',
        speed:      1000,
        timeout:    6000,
        random:     1
    });
});
