﻿
function startGallery1()
{
    var myGallery = new gallery($('myGallery'),
                                {
                                    transition: Fx.Transitions.quadInOut,
                                    timed: true,
                                    showArrows: true,
                                    showCarousel: false,
                                    embedLinks: false,
                                    randomize: true
                                });
                                 
}
function startGallery2()
{
    var dataIntoDollarsGallery = new gallery($('dataIntoDollarsGallery'),
                                {
                                    transition: Fx.Transitions.quadInOut,
                                    timed: true,
                                    showArrows: false,
                                    showCarousel: false,
                                    embedLinks: false,
                                    randomize: false,
                                    delay: 4000
                                });   
}
window.onDomReady(startGallery1);
window.onDomReady(startGallery2);		