// clase para el manejo de los dias seleccionados
function seleccionCalendarioPrecios(id, date){
	this.id = id;
	this.date = date;
	this.day = f_day;
	this.dayOfWeek = f_dayOfWeek;
	
	function f_day(){
		return this.date.getDate();
	}
	
	function f_dayOfWeek(){
		var dow = this.date.getDay();
		if (dow ==0){
			return 7;
		}else{
			return dow;
		}
	}
}
