RD.Podcast = {};
RD.Podcast.Config = {};

RD.Podcast.Config.DOCUMENT_PATH = "data/templates/";
RD.Podcast.Config.CODE_PATH = "js/podcasts/";

RD.Podcast.Config.FORMATS = {
	STANDARD:0
	,ITUNES:1
};

RD.Podcast.Config.formats = [{
		title:"standard"
		,classname:"RD.Podcast.Standard"
		,filename:"RD.Podcast.Standard.js"
		,selected:true
		,format:RD.Podcast.Config.FORMATS.STANDARD
		,disabled:false
	}
	,{
		title:"iTunes"
		,classname:"RD.Podcast.Itunes"
		,filename:"RD.Podcast.Itunes.js"
		,selected:false
		,format:RD.Podcast.Config.FORMATS.ITUNES
		,disabled:false
	}
];