/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var eventUtils = new EventDataUtils();
var eventData = {
    "201002081900": {
        id    : "",
        title : "Mens Ministry Meeting",
        date  : "",
        time  : "",
        place : "Fellowship Hall",
        description: "Mens Ministry Meeting - all men in church getting together, eat some food, and fellowship.",
        pictureUrl : "images/hbsimple.gif",
        link:""
    },
    "201002101800": {
        id    : "",
        title : "Valentines Banquet",
        date  : "",
        time  : "",
        place : "Fellowship Hall",
        description: "Annual Valentines Banquet - food will be catered by donation only with suggested gift $10",
        pictureUrl : "images/photos/valentines.jpg",
        link:""
    },    
    "201002171800": {
        id    : "",
        title : "Louisana Banquet",
        date  : "",
        time  : "",
        place : "Fellowship Hall",
        description: "Pastor Mike and Donna will be preparing a special feast around the special flair and tasts of the Louisana Bouou. You don't want to miss this special treat!",
        pictureUrl : "images/etoufee.jpeg",
        link:""
    },
    "201002211100": {
        id    : "",
        title : "New Life Drama Team",
        date  : "",
        time  : "",
        place : "Main Sanctuary",
        description: "If you have never seen or heard the Gospel presented with such power and authority in Drama, you do not want to miss this special service.",
        pictureUrl : "images/NewLifeDrama.png",
        link:""
    }
}
function EventDataUtils(){
    this.size = function(){
        var index = 0;
        for ( var key in eventData){
            var indeces = eventData[key];
            index++;
        }
        return index;
    }
}
