var Config = new Object();


Config.datepickerOpts = {
	dateFormat: 'yy-mm-dd',
	showOtherMonths: true,
	yearRange: '-2:+2',
	dayNames: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'],
	dayNamesMin: ['Di', 'Lu', 'Ma', 'Me', 'Je', 'Ve', 'Sa'],
	dayNamesShort: ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'],
	monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin','Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
	monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Juin','Juil','Aoû','Sep','Oct','Nov','Déc']
};

Config.addDialogOpts = {
	"draggable":false,
	"resizable":false,
	"width":650,
	"minWidth":650,
	"height":$(window).height()-100,
	"minHeight":400,
	"modal":true,
	"dialogClass":"dialog",
	"bgiframe":true,
	"buttons":{
		"Ajouter":function() {
			$("#addDialog form").submit();
		},
		"Annuler":function() {
			$(this).dialog("destroy");
			$(this).remove();
		}
	}
};

Config.editDialogOpts = {
	"draggable":false,
	"resizable":false,
	"width":650,
	"minWidth":650,
	"height":$(window).height()-100,
	"minHeight":400,
	"modal":true,
	"dialogClass":"dialog",
	"bgiframe":true,
	"buttons":{
		"Enregistrer":function() {
			$("#editDialog form").submit();
		},
		"Annuler":function() {
			$(this).dialog("destroy");
			$(this).remove();
		}
	}
};

Config.viewDialogOpts = {
	"draggable":false,
	"resizable":false,
	"width":650,
	"minWidth":650,
	"height":$(window).height()-100,
	"minHeight":400,
	"modal":true,
	"dialogClass":"dialog",
	"bgiframe":true,
	"buttons":{
		"Fermer":function() {
			$(this).dialog("destroy");
			$(this).remove();
		},
		"Supprimer":function() {
			window.location.href = $("#viewDialog .buttons a.delete").attr("href");
		},
		"Modifier":function() {
			window.location.href = $("#viewDialog .buttons a.edit").attr("href");
		}
	}
};