// JavaScript Document
function Gallery1(){

var options = {
continuous: true,
counterType: "skip"
};

var img1 = {
    player:     'img',
    content:    'Gallery/Image1_1.jpg',
    height:        400,
    width:        570,
    options:    options
};

var img2 = {
    player:     'img',
    content:    'Gallery/Image1_2.jpg',
    height:        400,
    width:        570,
    options:    options
};

var img3 = {
    player:     'img',
    content:    'Gallery/Image1_3.jpg',
    height:        400,
    width:        570,
    options:    options
};

Shadowbox.open([img1, img2, img3]);

};
