DRHorton.community = DRHorton.community || {};
DRHorton.community.content = DRHorton.community.content || {};

DRHorton.community.content.Classic = function(jqObj){
    this.jqObj = jqObj;
    this.type = "CLASSIC";
    if(typeof this.jqObj != "undefined")
        this.init();
}



DRHorton.community.content.Classic.inherits(DRHorton.community.content.Content);

DRHorton.community.content.Classic.methods({
    
        
})

DRHorton.community.content.Classic.IS_CONTENT_CLASS = true;

