var DocumentTypeEnum = {
    "application/pdf":{ext:"pdf",desc:"Document pdf",icone:"pdf.png",thumb:"tn-pdf.png",type:1},
    "application/vnd.oasis.opendocument.text":{ext:"odt",desc:"Texte OpenOffice",icone:"odt-dist.png",thumb:"tn-odt-dist.png",type:1},
    "application/vnd.oasis.opendocument.spreadsheet":{ext:"ods",desc:"Classeur OpenOffice",icone:"ods-dist.png",thumb:"tn-ods-dist.png",type:1},
    "application/vnd.oasis.opendocument.spreadsheet-template":{ext:"ots",desc:"Modèle de classeur OpenOffice",icone:"ots-dist.png",thumb:"tn-ots-dist.png",type:1},
    "application/vnd.oasis.opendocument.text-template":{ext:"ott",desc:"Modèle de texte OpenOffice",icone:"ott-dist.png",thumb:"tn-ott-dist.png",type:1},
    "application/msword":{ext:"doc",desc:"texte word",icone:"doc.png",thumb:"tn-doc.png",type:1},
    "text/plain":{ext:"txt",desc:"Texte AscII",icone:"txt.png",thumb:"tn-txt.png",type:1},
    "text/html":{ext:"html",desc:"Page Html",icone:"html.png",thumb:"tn-html.png",type:1},
	"text/xml":{ext:"xml",desc:"Source xml",icone:"xml.png",thumb:"tn-xml.png",type:1},
    "application/vnd.ms-excel":{ext:"xls",desc:"Classeur excel",icone:"xls.png",thumb:"tn-xls.png",type:3},
    "application/zip":{ext:"zip",desc:"Archive format zip",icone:"zip.png",thumb:"tn-zip.png",type:3},
    "application/rar":{ext:"rar",desc:"Archive format rar",icone:"rar.png",thumb:"tn-rar.png",type:3},
    "application/x-tar":{ext:"tgz",desc:"Archive format tar/tgz",icone:"tar.png",thumb:"tn-tar.png",type:3},
	"image/jpeg":{ext:"jpg",desc:"Image jpeg",icone:"jpg.png",thumb:"tn-jpg.png",type:0},
    "image/png":{ext:"png",desc:"Image png",icone:"png.png",thumb:"tn-png.png",type:0},
    "video/x-msvideo":{ext:"avi",desc:"Video avi",icone:"avi.png",thumb:"tn-avi.png",type:2},
    "video/x-ms-wmv":{ext:"wmv",desc:"Video wmv",icone:"wmv.png",thumb:"tn-wmv.png",type:2},
	"video/mpeg":{ext:"mpg",desc:"Video mpg",icone:"video.png",thumb:"tn-video.png",type:2},
    "video/mp4":{ext:"mp4",desc:"Video mp4",icone:"mp4.png",thumb:"tn-mp4.png",type:2},
    "video/mkv":{ext:"mkv",desc:"Video Matroska",icone:"mkv.png",thumb:"tn-mkv.png",type:2},
    "video/quicktime":{ext:"mov",desc:"Video mov",icone:"mov.png",thumb:"tn-mov.png",type:2},
    "audio/mp3":{ext:"mp3",desc:"Son mp3",icone:"mp3.png",thumb:"tn-mp3.png",type:4},
	"application/octet-stream":{ext:"",desc:"Type binaire/inconnu",icone:"bin.png",thumb:"tn-bin.png",type:-1}

};

var MimeTypeEnum = {
	"pdf":"application/pdf",
	"odt":"application/vnd.oasis.opendocument.text",
	"ods":"application/vnd.oasis.opendocument.spreadsheet",
	"ots":"application/vnd.oasis.opendocument.spreadsheet-template",
	"ott":"application/vnd.oasis.opendocument.text-template",
	"doc":"application/msword",
	"txt":"text/plain",
	"htm":"text/html",
	"html":"text/html",
	"xls":"application/vnd.ms-excel",
	"zip":"application/zip",
	"rar":"application/rar",
	"tgz":"application/x-tar",
	"tar":"application/x-tar",
	"gz":"application/x-tar",
	"jpeg":"image/jpeg",
	"jpg":"image/jpeg",
	"png":"image/png",
	"avi":"video/x-msvideo",
	"wmv":"video/x-ms-wmv",
	"mpg":"video/mpeg",
	"mpeg":"video/mpeg",
	"mp4":"video/mp4",
	"mkv":"video/mkv",
	"mov":"video/quicktime",
	"mp3":"audio/mp3",
	"xml":"text/xml"
};

var CategorieEnum = {
	"FOURNITURES":"Fournitures",
	"PRESTATIONS":"Prestations intellectuelles",
	"SERVICES":"Services",
	"TRAVAUX":"Travaux",
	"AUTRE":"Autres"
};

var OrganismeListe = [
	{content:"Tous les organismes",id:null,css:null},
	{content:"Ville d'Alès",id:'/marchep/ville.d.ales',css:'icon_offre_ville'},
	{content:"Réal",id:'/marchep/ville.d.ales/real',css:'icon_offre_real'},
	{content:"Régie Foires et Marchés",id:'/marchep/ville.d.ales/regie.foires.et.marches',css:'icon_offre_ville'},
	{content:"Abattoirs",id:'/marchep/ville.d.ales/abattoirs',css:'icon_offre_abattoirs'},
	{content:"Grand Alès",id:'/marchep/grand.ales',css:'icon_offre_agglo'},
	{content:"Pôle Mécanique",id:'/marchep/grand.ales/pole.mecanique',css:'icon_offre_pole'},
	{content:"Assainissement",id:'/marchep/grand.ales/assainissement',css:'icon_offre_assainissement'},
	{content:"Avène",id:'/marchep/avene',css:'icon_offre_avene'},
	{content:"Pays Cévennes",id:'/marchep/pays.cevennes',css:'icon_offre_pays'},
	{content:"Smiritom",id:'/marchep/smiritom',css:'icon_offre_smiritom'},
	{content:"Sitom",id:'/marchep/sitom',css:'icon_offre_sitom'},	
	{content:"CCAS d'Alès",id:'/marchep/ccas.d.ales',css:'icon_offre_ccas'},
 	{content:"SMTPBA",id:'/marchep/smtpba',css:'icon_offre_smtba'},
	 	{content:"SPLA",id:'/marchep/spal',css:'icon_offre_spla'}

];

var CategorieListe = [
	{content:"Toutes les catégories",id:null},
	{content:'Fournitures',id:'FOURNITURES'},
	{content:'Prestation intellectuelle',id:'PRESTATIONS'},
	{content:'Services',id:'SERVICES'},
	{content:'Travaux',id:'TRAVAUX'},
	{content:'Autres',id:'AUTRE'}
];
    




