var Image = $.Class.create(
{
    imageType : "",		// Type of the image ("picture" or "video")
    contentURL: "",		// URL of the image or video content
        
    initialize: function (imageType, contentURL) 
    {
        this.imageType = imageType;
        this.contentURL = contentURL;
    }
});
