/**
 * Data set
 */
var items = new Array();
items.push({ 
    'name': 'SAVE THE DATE!', 
    'descr': 'VISIONARY Summer Conference - August 3 - 5 // 2011',
    'image': './images/projects/panda.png'
});
items.push({ 
    'name': 'PRAISE CHAPEL FELLOWSHIP', 
    'descr': 'A family of church fellowships with a world vision. WIN! BUILD! RELEASE!',
    'image': './images/projects/reinvigorate.png'
});
items.push({
    'name': 'MISSING JESUS',
    'descr': 'www.missingjesus.com',
    'image': './images/projects/pulse_copy.png'
});
items.push({
    'name': 'MISSIONS TRIPS',
    'descr': 'Missions trip opportunites comming soon! Keep on the look-out!',
    'image': './images/projects/mobify_copy.png'
});

/**
 * Action code
 */
$(document).ready(function() {
    // this is the current item, by array key
    var curIndex = 0;
    // how many items are in the list
    var max = items.length;

    // "previous" action
    $('.prev').click(function() {
        // decrement the curIndex
        curIndex--;
        if (curIndex < 0) {
            curIndex = max-1;
        }
        
        updateProject();
    });
        
    $('.next').click(function() {
        curIndex++;
        if (curIndex >= max) {
            curIndex = 0;
        }

        updateProject();
    });

    // update the latest project
    function updateProject() {
        $('#latest-project .preview .image').attr('src', items[curIndex]['image']);
        $('#latest-project .descr .title').html(items[curIndex]['name']);
        $('#latest-project .descr .description').html(items[curIndex]['descr']);
    }
});

