function appGallery(){
    var options = {
        continuous: true
    };

    var app1 = {
        player:     'img',
        content:    'img/app/quiz.png',
        title:      'Questions & Answers',
        options:    options
    };

    var app2 = {
        player:     'img',
        content:    'img/app/pdp.jpg',
        title:      'Phone Dialer Plus',
        options:    options
    };

    var app3 = {
        player:     'img',
        content:    'img/app/vcdcr.jpg',
        title:      'VCD Cover Renamer',
        options:    options
    };

    Shadowbox.open([app1, app2, app3]);
}

function webGallery(){
    var options = {
        continuous: true
    };
    
    var odrag = {
        continuous: true,
        handleOversize: 'drag'
    };

    var web1 = {
        player:     'img',
        content:    'img/web/urstv2.jpg',
        title:      'URsTV v2',
        options:    odrag
    };

    var web2 = {
        player:     'img',
        content:    'img/web/urstv.jpg',
        title:      'URsTV v1',
        options:    options
    };

    var web3 = {
        player:     'img',
        content:    'img/web/archtech2.png',
        title:      'Arch Technologies',
        options:    odrag
    };

    var web4 = {
        player:     'img',
        content:    'img/web/archtech.jpg',
        title:      'Old Arch Technologies',
        options:    options
    };

    var web5 = {
        player:     'img',
        content:    'img/web/paulrobert.png',
        title:      'Paul-Robert Archibald - Resume & Portfolio',
        options:    options
    };

    Shadowbox.open([web1, web2, web3, web4, web5]);
}