// https://github.com/pawelgrzybek/siema/blob/master/dist/siema.min.js !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define("Siema",[],t):"object"==typeof exports?exports.Siema=t():e.Siema=t()}("undefined"!=typeof self?self:this,function(){return function(e){function t(r){if(i[r])return i[r].exports;var n=i[r]={i:r,l:!1,exports:{}};return e[r].call(n.exports,n,n.exports,t),n.l=!0,n.exports}var i={};return t.m=e,t.c=i,t.d=function(e,i,r){t.o(e,i)||Object.defineProperty(e,i,{configurable:!1,enumerable:!0,get:r})},t.n=function(e){var i=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(i,"a",i),i},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,i){"use strict";function r(e,t){if(!(e instanceof t))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(t,"__esModule",{value:!0});var n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s=function(){function e(e,t){for(var i=0;i=e&&(this.perPage=this.config.perPage[e])}}},{key:"prev",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=arguments[1];if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;if(this.config.loop){if(this.currentSlide-e<0){this.disableTransition();var r=this.currentSlide+this.innerElements.length,n=this.perPage,s=r+n,l=(this.config.rtl?1:-1)*s*(this.selectorWidth/this.perPage),o=this.config.draggable?this.drag.endX-this.drag.startX:0;this.sliderFrame.style[this.transformProperty]="translate3d("+(l+o)+"px, 0, 0)",this.currentSlide=r-e}else this.currentSlide=this.currentSlide-e}else this.currentSlide=Math.max(this.currentSlide-e,0);i!==this.currentSlide&&(this.slideToCurrent(this.config.loop),this.config.onChange.call(this),t&&t.call(this))}}},{key:"next",value:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:1,t=arguments[1];if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;if(this.config.loop){if(this.currentSlide+e>this.innerElements.length-this.perPage){this.disableTransition();var r=this.currentSlide-this.innerElements.length,n=this.perPage,s=r+n,l=(this.config.rtl?1:-1)*s*(this.selectorWidth/this.perPage),o=this.config.draggable?this.drag.endX-this.drag.startX:0;this.sliderFrame.style[this.transformProperty]="translate3d("+(l+o)+"px, 0, 0)",this.currentSlide=r+e}else this.currentSlide=this.currentSlide+e}else this.currentSlide=Math.min(this.currentSlide+e,this.innerElements.length-this.perPage);i!==this.currentSlide&&(this.slideToCurrent(this.config.loop),this.config.onChange.call(this),t&&t.call(this))}}},{key:"disableTransition",value:function(){this.sliderFrame.style.webkitTransition="all 0ms "+this.config.easing,this.sliderFrame.style.transition="all 0ms "+this.config.easing}},{key:"enableTransition",value:function(){this.sliderFrame.style.webkitTransition="all "+this.config.duration+"ms "+this.config.easing,this.sliderFrame.style.transition="all "+this.config.duration+"ms "+this.config.easing}},{key:"goTo",value:function(e,t){if(!(this.innerElements.length<=this.perPage)){var i=this.currentSlide;this.currentSlide=this.config.loop?e%this.innerElements.length:Math.min(Math.max(e,0),this.innerElements.length-this.perPage),i!==this.currentSlide&&(this.slideToCurrent(),this.config.onChange.call(this),t&&t.call(this))}}},{key:"slideToCurrent",value:function(e){var t=this,i=this.config.loop?this.currentSlide+this.perPage:this.currentSlide,r=(this.config.rtl?1:-1)*i*(this.selectorWidth/this.perPage);e?requestAnimationFrame(function(){requestAnimationFrame(function(){t.enableTransition(),t.sliderFrame.style[t.transformProperty]="translate3d("+r+"px, 0, 0)"})}):this.sliderFrame.style[this.transformProperty]="translate3d("+r+"px, 0, 0)"}},{key:"updateAfterDrag",value:function(){var e=(this.config.rtl?-1:1)*(this.drag.endX-this.drag.startX),t=Math.abs(e),i=this.config.multipleDrag?Math.ceil(t/(this.selectorWidth/this.perPage)):1,r=e>0&&this.currentSlide-i<0,n=e<0&&this.currentSlide+i>this.innerElements.length-this.perPage;e>0&&t>this.config.threshold&&this.innerElements.length>this.perPage?this.prev(i):e<0&&t>this.config.threshold&&this.innerElements.length>this.perPage&&this.next(i),this.slideToCurrent(r||n)}},{key:"resizeHandler",value:function(){this.resolveSlidesNumber(),this.currentSlide+this.perPage>this.innerElements.length&&(this.currentSlide=this.innerElements.length<=this.perPage?0:this.innerElements.length-this.perPage),this.selectorWidth=this.selector.offsetWidth,this.buildSliderFrame()}},{key:"clearDrag",value:function(){this.drag={startX:0,endX:0,startY:0,letItGo:null,preventClick:this.drag.preventClick}}},{key:"touchstartHandler",value:function(e){-1!==["TEXTAREA","OPTION","INPUT","SELECT"].indexOf(e.target.nodeName)||(e.stopPropagation(),this.pointerDown=!0,this.drag.startX=e.touches[0].pageX,this.drag.startY=e.touches[0].pageY)}},{key:"touchendHandler",value:function(e){e.stopPropagation(),this.pointerDown=!1,this.enableTransition(),this.drag.endX&&this.updateAfterDrag(),this.clearDrag()}},{key:"touchmoveHandler",value:function(e){if(e.stopPropagation(),null===this.drag.letItGo&&(this.drag.letItGo=Math.abs(this.drag.startY-e.touches[0].pageY)=this.innerElements.length)throw new Error("Item to remove doesn't exist 😭");var i=ethis.innerElements.length+1)throw new Error("Unable to inset it at this index 😭");if(-1!==this.innerElements.indexOf(e))throw new Error("The same item in a carousel? Really? Nope 😭");var r=t<=this.currentSlide>0&&this.innerElements.length;this.currentSlide=r?this.currentSlide+1:this.currentSlide,this.innerElements.splice(t,0,e),this.buildSliderFrame(),i&&i.call(this)}},{key:"prepend",value:function(e,t){this.insert(e,0),t&&t.call(this)}},{key:"append",value:function(e,t){this.insert(e,this.innerElements.length+1),t&&t.call(this)}},{key:"destroy",value:function(){var e=arguments.length>0&&void 0!==arguments[0]&&arguments[0],t=arguments[1];if(this.detachEvents(),this.selector.style.cursor="auto",e){for(var i=document.createDocumentFragment(),r=0;rResponsable(s) des infos diverses: 
Mme Francine Desmarais, présidente
Tél. du club: (450) 372-0886 

Nous vous invitons à consulter le site web du club FADOQ de Granby pour connaître la liste des activités organisées. 

 

ACTIVITÉS DU CLUB:

Lundi 13h00 - Cours de danse (int./avancé)
Lundi 13h00 - Exercices Viactive
Mardi 11h00 - Cours danse (débutant 1)
Mardi 13h00 - Cours danse (débutant 2)
Mardi 14h30 - Cours danse partenaires
Mercredi 13h30 - Baseball poche, billard
Mercredi 19h00 - Danse pour plaisir 
Jeudi 13h00 - Exercices Vieactive
Jeudi 13h00 - Pratique partenaire (1er du mois)

Jeudi  13h00 - Danse du professeur (2e -3e -4e du mois)
Jeudi 14h00 - Palet américain et billard  
Jeudi 19h00 - Dards
Samedi 19h30 - Danse ligne-partenaire-social

Cours d’ordinateur - Selon inscriptions

Voyages : Site Internet ou Réjeane Simard  450 776-5450

 

 

ACTIVITÉS ANNUELLES 2016:

19 mars - Soirée country
28 mai - Souper et soirée : Fêtes des Mères et des Pères


 

 

 

 

 

"); }); } while(jQuery("[href*='{FADOQ_Club|infoBox}']").length) { jQuery("[href*='{FADOQ_Club|infoBox}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|infoBox}', "

Responsable(s) des infos diverses: 
Mme Francine Desmarais, présidente
Tél. du club: (450) 372-0886 

Nous vous invitons à consulter le site web du club FADOQ de Granby pour connaître la liste des activités organisées. 

 

ACTIVITÉS DU CLUB:

Lundi 13h00 - Cours de danse (int./avancé)
Lundi 13h00 - Exercices Viactive
Mardi 11h00 - Cours danse (débutant 1)
Mardi 13h00 - Cours danse (débutant 2)
Mardi 14h30 - Cours danse partenaires
Mercredi 13h30 - Baseball poche, billard
Mercredi 19h00 - Danse pour plaisir 
Jeudi 13h00 - Exercices Vieactive
Jeudi 13h00 - Pratique partenaire (1er du mois)

Jeudi  13h00 - Danse du professeur (2e -3e -4e du mois)
Jeudi 14h00 - Palet américain et billard  
Jeudi 19h00 - Dards
Samedi 19h30 - Danse ligne-partenaire-social

Cours d’ordinateur - Selon inscriptions

Voyages : Site Internet ou Réjeane Simard  450 776-5450

 

 

ACTIVITÉS ANNUELLES 2016:

19 mars - Soirée country
28 mai - Souper et soirée : Fêtes des Mères et des Pères


 

 

 

 

 

")); }); } while(jQuery("p:contains('{FADOQ_Club|image}')").length) { jQuery("p:contains('{FADOQ_Club|image}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|image}', "f53d813aed429b74af6bb9c60b6583b3.jpg"); }); } while(jQuery("[href*='{FADOQ_Club|image}']").length) { jQuery("[href*='{FADOQ_Club|image}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|image}', "f53d813aed429b74af6bb9c60b6583b3.jpg")); }); } while(jQuery("p:contains('{FADOQ_Club|created}')").length) { jQuery("p:contains('{FADOQ_Club|created}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|created}', "2008-10-27 09:13:26"); }); } while(jQuery("[href*='{FADOQ_Club|created}']").length) { jQuery("[href*='{FADOQ_Club|created}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|created}', "2008-10-27 09:13:26")); }); } while(jQuery("p:contains('{FADOQ_Club|echeance}')").length) { jQuery("p:contains('{FADOQ_Club|echeance}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|echeance}', ""); }); } while(jQuery("[href*='{FADOQ_Club|echeance}']").length) { jQuery("[href*='{FADOQ_Club|echeance}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|echeance}', "")); }); } while(jQuery("p:contains('{FADOQ_Club|client_inservio}')").length) { jQuery("p:contains('{FADOQ_Club|client_inservio}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|client_inservio}', "1"); }); } while(jQuery("[href*='{FADOQ_Club|client_inservio}']").length) { jQuery("[href*='{FADOQ_Club|client_inservio}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|client_inservio}', "1")); }); } while(jQuery("p:contains('{FADOQ_Club|stats_sid}')").length) { jQuery("p:contains('{FADOQ_Club|stats_sid}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|stats_sid}', "1"); }); } while(jQuery("[href*='{FADOQ_Club|stats_sid}']").length) { jQuery("[href*='{FADOQ_Club|stats_sid}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|stats_sid}', "1")); }); } while(jQuery("p:contains('{FADOQ_Club|stats_regional_sid}')").length) { jQuery("p:contains('{FADOQ_Club|stats_regional_sid}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|stats_regional_sid}', "3"); }); } while(jQuery("[href*='{FADOQ_Club|stats_regional_sid}']").length) { jQuery("[href*='{FADOQ_Club|stats_regional_sid}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|stats_regional_sid}', "3")); }); } while(jQuery("p:contains('{FADOQ_Club|description1}')").length) { jQuery("p:contains('{FADOQ_Club|description1}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|description1}', ""); }); } while(jQuery("[href*='{FADOQ_Club|description1}']").length) { jQuery("[href*='{FADOQ_Club|description1}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|description1}', "")); }); } while(jQuery("p:contains('{FADOQ_Club|prix1}')").length) { jQuery("p:contains('{FADOQ_Club|prix1}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|prix1}', "25.00"); }); } while(jQuery("[href*='{FADOQ_Club|prix1}']").length) { jQuery("[href*='{FADOQ_Club|prix1}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|prix1}', "25.00")); }); } while(jQuery("p:contains('{FADOQ_Club|prix1_mp3}')").length) { jQuery("p:contains('{FADOQ_Club|prix1_mp3}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|prix1_mp3}', "25 dollars"); }); } while(jQuery("[href*='{FADOQ_Club|prix1_mp3}']").length) { jQuery("[href*='{FADOQ_Club|prix1_mp3}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|prix1_mp3}', "25 dollars")); }); } while(jQuery("p:contains('{FADOQ_Club|description2}')").length) { jQuery("p:contains('{FADOQ_Club|description2}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|description2}', ""); }); } while(jQuery("[href*='{FADOQ_Club|description2}']").length) { jQuery("[href*='{FADOQ_Club|description2}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|description2}', "")); }); } while(jQuery("p:contains('{FADOQ_Club|prix2}')").length) { jQuery("p:contains('{FADOQ_Club|prix2}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|prix2}', ""); }); } while(jQuery("[href*='{FADOQ_Club|prix2}']").length) { jQuery("[href*='{FADOQ_Club|prix2}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|prix2}', "")); }); } while(jQuery("p:contains('{FADOQ_Club|prix2_mp3}')").length) { jQuery("p:contains('{FADOQ_Club|prix2_mp3}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|prix2_mp3}', ""); }); } while(jQuery("[href*='{FADOQ_Club|prix2_mp3}']").length) { jQuery("[href*='{FADOQ_Club|prix2_mp3}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|prix2_mp3}', "")); }); } while(jQuery("p:contains('{FADOQ_Club|promotion_prix}')").length) { jQuery("p:contains('{FADOQ_Club|promotion_prix}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|promotion_prix}', "https://fadoqry.s3.ca-central-1.amazonaws.com/Adhesion-25.png"); }); } while(jQuery("[href*='{FADOQ_Club|promotion_prix}']").length) { jQuery("[href*='{FADOQ_Club|promotion_prix}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|promotion_prix}', "https://fadoqry.s3.ca-central-1.amazonaws.com/Adhesion-25.png")); }); } while(jQuery("p:contains('{FADOQ_Club|choix_prix}')").length) { jQuery("p:contains('{FADOQ_Club|choix_prix}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|choix_prix}', "https://fadoqry.s3.ca-central-1.amazonaws.com/Adhesion-25.png"); }); } while(jQuery("[href*='{FADOQ_Club|choix_prix}']").length) { jQuery("[href*='{FADOQ_Club|choix_prix}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|choix_prix}', "https://fadoqry.s3.ca-central-1.amazonaws.com/Adhesion-25.png")); }); } while(jQuery("p:contains('{FADOQ_Club|jours_avant_rappel}')").length) { jQuery("p:contains('{FADOQ_Club|jours_avant_rappel}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|jours_avant_rappel}', "10"); }); } while(jQuery("[href*='{FADOQ_Club|jours_avant_rappel}']").length) { jQuery("[href*='{FADOQ_Club|jours_avant_rappel}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|jours_avant_rappel}', "10")); }); } while(jQuery("p:contains('{FADOQ_Club|max_rappels}')").length) { jQuery("p:contains('{FADOQ_Club|max_rappels}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|max_rappels}', "2"); }); } while(jQuery("[href*='{FADOQ_Club|max_rappels}']").length) { jQuery("[href*='{FADOQ_Club|max_rappels}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|max_rappels}', "2")); }); } while(jQuery("p:contains('{FADOQ_Club|jours_attente_paiement}')").length) { jQuery("p:contains('{FADOQ_Club|jours_attente_paiement}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|jours_attente_paiement}', "90"); }); } while(jQuery("[href*='{FADOQ_Club|jours_attente_paiement}']").length) { jQuery("[href*='{FADOQ_Club|jours_attente_paiement}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|jours_attente_paiement}', "90")); }); } while(jQuery("p:contains('{FADOQ_Club|envoyer_copie_courriels_adresses}')").length) { jQuery("p:contains('{FADOQ_Club|envoyer_copie_courriels_adresses}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|envoyer_copie_courriels_adresses}', "0"); }); } while(jQuery("[href*='{FADOQ_Club|envoyer_copie_courriels_adresses}']").length) { jQuery("[href*='{FADOQ_Club|envoyer_copie_courriels_adresses}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|envoyer_copie_courriels_adresses}', "0")); }); } while(jQuery("p:contains('{FADOQ_Club|afficher_choix_credit_coupon_reponse}')").length) { jQuery("p:contains('{FADOQ_Club|afficher_choix_credit_coupon_reponse}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|afficher_choix_credit_coupon_reponse}', "1"); }); } while(jQuery("[href*='{FADOQ_Club|afficher_choix_credit_coupon_reponse}']").length) { jQuery("[href*='{FADOQ_Club|afficher_choix_credit_coupon_reponse}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|afficher_choix_credit_coupon_reponse}', "1")); }); } while(jQuery("p:contains('{FADOQ_Club|html_site_regional}')").length) { jQuery("p:contains('{FADOQ_Club|html_site_regional}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|html_site_regional}', "

ACTIVITÉS DU CLUB
Saison 2020-2021

Quelques activités disponibles sur réservation.

Lundi

10 h 00 : Viactive
13 h 00 Activité exercices sur musique intermédiaire & avancés
15 h 00 : Activité exercices sur musique débutants

Mardi

13h 00 : Activité exercices sur musique débutant 2 & intermédiaire 1
15 h 00 :Activité exercices sur musique débutant  2
13 h 30 : Palet & billard (Non offert)

Mercredi

13 h 30 : Baseball poche & billard (Non offert)
19 h 00 Activité exercices sur musique Animation Francine & Robert

Jeudi

10 h 00 : Viactive
13 h 30 : 
Activité exercices sur musique Animation Suzanne & Bryan
13 h 30 : Palet & billard (Non offert)
19 h 00 : Dards & Billard

Samedi

19 h 30 Activité exercices sur musique Animation Francine & Robert

 

Dimanche

13 h 30 Activité exercices sur musique Animation Suzanne & Bryan

 

Présidente, carte de membres, activités : Francine Desmarais
 

Nous vous invitons à consulter le site web du club FADOQ de Granby pour connaître la liste des activités organisées. 
 

 

 

 

 

 

"); }); } while(jQuery("[href*='{FADOQ_Club|html_site_regional}']").length) { jQuery("[href*='{FADOQ_Club|html_site_regional}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|html_site_regional}', "

ACTIVITÉS DU CLUB
Saison 2020-2021

Quelques activités disponibles sur réservation.

Lundi

10 h 00 : Viactive
13 h 00 Activité exercices sur musique intermédiaire & avancés
15 h 00 : Activité exercices sur musique débutants

Mardi

13h 00 : Activité exercices sur musique débutant 2 & intermédiaire 1
15 h 00 :Activité exercices sur musique débutant  2
13 h 30 : Palet & billard (Non offert)

Mercredi

13 h 30 : Baseball poche & billard (Non offert)
19 h 00 Activité exercices sur musique Animation Francine & Robert

Jeudi

10 h 00 : Viactive
13 h 30 : 
Activité exercices sur musique Animation Suzanne & Bryan
13 h 30 : Palet & billard (Non offert)
19 h 00 : Dards & Billard

Samedi

19 h 30 Activité exercices sur musique Animation Francine & Robert

 

Dimanche

13 h 30 Activité exercices sur musique Animation Suzanne & Bryan

 

Présidente, carte de membres, activités : Francine Desmarais
 

Nous vous invitons à consulter le site web du club FADOQ de Granby pour connaître la liste des activités organisées. 
 

 

 

 

 

 

")); }); } while(jQuery("p:contains('{FADOQ_Club|heures_ouverture}')").length) { jQuery("p:contains('{FADOQ_Club|heures_ouverture}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|heures_ouverture}', "bureau: mercredi et jeudi 13h00 à 15h00 et jeudi soir 19h00 à 20h30 Paiement par carte crédit disponible par téléphone."); }); } while(jQuery("[href*='{FADOQ_Club|heures_ouverture}']").length) { jQuery("[href*='{FADOQ_Club|heures_ouverture}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|heures_ouverture}', "bureau: mercredi et jeudi 13h00 à 15h00 et jeudi soir 19h00 à 20h30 Paiement par carte crédit disponible par téléphone.")); }); } while(jQuery("p:contains('{FADOQ_Club|heures_ouverture_site_web}')").length) { jQuery("p:contains('{FADOQ_Club|heures_ouverture_site_web}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|heures_ouverture_site_web}', "

heures Bureau :mercredi de 13h00 à 15h00
jeudi de 13h00 à 15h00  en haut a la salle

 
 

 

(bureau est au sous-sol)

 

"); }); } while(jQuery("[href*='{FADOQ_Club|heures_ouverture_site_web}']").length) { jQuery("[href*='{FADOQ_Club|heures_ouverture_site_web}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|heures_ouverture_site_web}', "

heures Bureau :mercredi de 13h00 à 15h00
jeudi de 13h00 à 15h00  en haut a la salle

 
 

 

(bureau est au sous-sol)

 

")); }); } while(jQuery("p:contains('{FADOQ_Club|page_accueil_site_web}')").length) { jQuery("p:contains('{FADOQ_Club|page_accueil_site_web}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|page_accueil_site_web}', "

 

95 boul. Leclerc Est Granby J2H 2R1 450-372-0886

Bureau Sous-sol ouvert Mercredi PM 13:00 à 15:00

jeudi de 13:00 a 15:00 salle en haut

possible paiement sur site web ou

faire parvenir chèque par la poste

95 boul Leclerc E J2H2R1

 

 

 

 

 

 

 

 

 

Danse du samedi soir

19h30 a 22h45 coût 10$ avec lunch

 

danse du professeur

jeudi 13h00 à 16h00 coût $10

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

session hiver 2024

termine le 7 mai 2024

 

Lundi

cours débutants           10h30 a 11h30  cout $5 membre

cours inter-avancés        13h00 a 14h30     cout $6 membre

 

Mardi

cours inter revision   13h00 a 14h30  cout $6 membre

cours débutants2&inter  14h45 a 16h00 cout $5 membre

mercredi 

 

Danse pour le plaisir

 19h00 à 21h00

coût $5

fin de L'activité le 24 avril

 

Jeudi Pratique pour tous du professeur

13h00 a 16h00  café-biscuit  cout $10

Danse du samedi soir 19H30 à 22h45

coût $10 membre et $11 non membre

goûter fin de soirée

18 mai 17h45 souper Pères et Mères

billets $30 membre et $35 non membre

limite achat 11 mai 2024

 

 

 

 

 

 

 

 

"); }); } while(jQuery("[href*='{FADOQ_Club|page_accueil_site_web}']").length) { jQuery("[href*='{FADOQ_Club|page_accueil_site_web}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|page_accueil_site_web}', "

 

95 boul. Leclerc Est Granby J2H 2R1 450-372-0886

Bureau Sous-sol ouvert Mercredi PM 13:00 à 15:00

jeudi de 13:00 a 15:00 salle en haut

possible paiement sur site web ou

faire parvenir chèque par la poste

95 boul Leclerc E J2H2R1

 

 

 

 

 

 

 

 

 

Danse du samedi soir

19h30 a 22h45 coût 10$ avec lunch

 

danse du professeur

jeudi 13h00 à 16h00 coût $10

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

session hiver 2024

termine le 7 mai 2024

 

Lundi

cours débutants           10h30 a 11h30  cout $5 membre

cours inter-avancés        13h00 a 14h30     cout $6 membre

 

Mardi

cours inter revision   13h00 a 14h30  cout $6 membre

cours débutants2&inter  14h45 a 16h00 cout $5 membre

mercredi 

 

Danse pour le plaisir

 19h00 à 21h00

coût $5

fin de L'activité le 24 avril

 

Jeudi Pratique pour tous du professeur

13h00 a 16h00  café-biscuit  cout $10

Danse du samedi soir 19H30 à 22h45

coût $10 membre et $11 non membre

goûter fin de soirée

18 mai 17h45 souper Pères et Mères

billets $30 membre et $35 non membre

limite achat 11 mai 2024

 

 

 

 

 

 

 

 

")); }); } while(jQuery("p:contains('{FADOQ_Club|page_accueil_site_web_2}')").length) { jQuery("p:contains('{FADOQ_Club|page_accueil_site_web_2}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|page_accueil_site_web_2}', "

\"\"

Pour renouveler votre adhésion à partir de maintenant:

Option 1. Renouveler en ligne (bouton situé en haut de page)

Option 2. Renouveler Via Accès D Desjardins (Fournisseur FADOQ Richelieu-Yamaska Inscrire numéro membres 7 chiffres)

Votre nouvelle carte sera postée à l'adresse indiquée à votre dossier.
Besoin de faire la mise à jour de l'adresse à votre dossier ? Cliquez ici

"); }); } while(jQuery("[href*='{FADOQ_Club|page_accueil_site_web_2}']").length) { jQuery("[href*='{FADOQ_Club|page_accueil_site_web_2}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|page_accueil_site_web_2}', "

\"\"

Pour renouveler votre adhésion à partir de maintenant:

Option 1. Renouveler en ligne (bouton situé en haut de page)

Option 2. Renouveler Via Accès D Desjardins (Fournisseur FADOQ Richelieu-Yamaska Inscrire numéro membres 7 chiffres)

Votre nouvelle carte sera postée à l'adresse indiquée à votre dossier.
Besoin de faire la mise à jour de l'adresse à votre dossier ? Cliquez ici

")); }); } while(jQuery("p:contains('{FADOQ_Club|app_activites}')").length) { jQuery("p:contains('{FADOQ_Club|app_activites}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|app_activites}', "

 

\"\"
 

 

 

 

 

 

 

Club (Sous-Sol)

ACTIVITÉS

termine le 25 avril 2024

 

Vie Active: Lundi et Jeudi 10:00 à 11:00

Palet : Mardi  13:30 à 15:00

Baseball Poche  : Mercredi 13:30 à 15:00

Billard mardi-mercredi et jeudi 12h30 à 15h00

danse pour le plaisir mercredi soir

fin de l'activité 24 avril

19h à 21 H

coût $ 5

 

 

palet  jeudi 13h30 a 15h00

Dards : Jeudi 19:00 à 20:30

Hiver 2024 cours de danse

termine le 7 mai

lundi débutants 10h30- 13h00 avancé

mardi revision 13h00 et débutant 2 intermédiaires 14h45 

 

 

 

 

jeudi Pratique danses du professeur

13h00 a 16h00

coût $10 

Danse du Samedi soir 

coût $10 membres et $11 non membres

19h30 a 22h45

goûter fin de soirée

souper Pères et Mères 

18 mai 17h45 

$30 membre et $35 non membre

limite achat 11 mai 2024

 

 

 

 

 

 

 

 

"); }); } while(jQuery("[href*='{FADOQ_Club|app_activites}']").length) { jQuery("[href*='{FADOQ_Club|app_activites}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|app_activites}', "

 

\"\"
 

 

 

 

 

 

 

Club (Sous-Sol)

ACTIVITÉS

termine le 25 avril 2024

 

Vie Active: Lundi et Jeudi 10:00 à 11:00

Palet : Mardi  13:30 à 15:00

Baseball Poche  : Mercredi 13:30 à 15:00

Billard mardi-mercredi et jeudi 12h30 à 15h00

danse pour le plaisir mercredi soir

fin de l'activité 24 avril

19h à 21 H

coût $ 5

 

 

palet  jeudi 13h30 a 15h00

Dards : Jeudi 19:00 à 20:30

Hiver 2024 cours de danse

termine le 7 mai

lundi débutants 10h30- 13h00 avancé

mardi revision 13h00 et débutant 2 intermédiaires 14h45 

 

 

 

 

jeudi Pratique danses du professeur

13h00 a 16h00

coût $10 

Danse du Samedi soir 

coût $10 membres et $11 non membres

19h30 a 22h45

goûter fin de soirée

souper Pères et Mères 

18 mai 17h45 

$30 membre et $35 non membre

limite achat 11 mai 2024

 

 

 

 

 

 

 

 

")); }); } while(jQuery("p:contains('{FADOQ_Club|image_accueil_site_web}')").length) { jQuery("p:contains('{FADOQ_Club|image_accueil_site_web}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|image_accueil_site_web}', "5afd5156220215a400635cadc308d75f.jpeg"); }); } while(jQuery("[href*='{FADOQ_Club|image_accueil_site_web}']").length) { jQuery("[href*='{FADOQ_Club|image_accueil_site_web}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|image_accueil_site_web}', "5afd5156220215a400635cadc308d75f.jpeg")); }); } while(jQuery("p:contains('{FADOQ_Club|titre_page_perso}')").length) { jQuery("p:contains('{FADOQ_Club|titre_page_perso}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|titre_page_perso}', ""); }); } while(jQuery("[href*='{FADOQ_Club|titre_page_perso}']").length) { jQuery("[href*='{FADOQ_Club|titre_page_perso}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|titre_page_perso}', "")); }); } while(jQuery("p:contains('{FADOQ_Club|contenu_page_perso}')").length) { jQuery("p:contains('{FADOQ_Club|contenu_page_perso}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|contenu_page_perso}', ""); }); } while(jQuery("[href*='{FADOQ_Club|contenu_page_perso}']").length) { jQuery("[href*='{FADOQ_Club|contenu_page_perso}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|contenu_page_perso}', "")); }); } while(jQuery("p:contains('{FADOQ_Club|details_nous_joindre}')").length) { jQuery("p:contains('{FADOQ_Club|details_nous_joindre}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|details_nous_joindre}', ""); }); } while(jQuery("[href*='{FADOQ_Club|details_nous_joindre}']").length) { jQuery("[href*='{FADOQ_Club|details_nous_joindre}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|details_nous_joindre}', "")); }); } while(jQuery("p:contains('{FADOQ_Club|rediriger_adhesion_renouvellement_vers_provincial}')").length) { jQuery("p:contains('{FADOQ_Club|rediriger_adhesion_renouvellement_vers_provincial}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|rediriger_adhesion_renouvellement_vers_provincial}', "0"); }); } while(jQuery("[href*='{FADOQ_Club|rediriger_adhesion_renouvellement_vers_provincial}']").length) { jQuery("[href*='{FADOQ_Club|rediriger_adhesion_renouvellement_vers_provincial}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|rediriger_adhesion_renouvellement_vers_provincial}', "0")); }); } while(jQuery("p:contains('{FADOQ_Club|rediriger_rabais_vers_provincial}')").length) { jQuery("p:contains('{FADOQ_Club|rediriger_rabais_vers_provincial}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|rediriger_rabais_vers_provincial}', "0"); }); } while(jQuery("[href*='{FADOQ_Club|rediriger_rabais_vers_provincial}']").length) { jQuery("[href*='{FADOQ_Club|rediriger_rabais_vers_provincial}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|rediriger_rabais_vers_provincial}', "0")); }); } while(jQuery("p:contains('{FADOQ_Club|remplacement_bloc_president}')").length) { jQuery("p:contains('{FADOQ_Club|remplacement_bloc_president}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|remplacement_bloc_president}', "

Responsable des adhésions | activités du club:
M. Robert Leduc  président

"); }); } while(jQuery("[href*='{FADOQ_Club|remplacement_bloc_president}']").length) { jQuery("[href*='{FADOQ_Club|remplacement_bloc_president}']").each(function() { jQuery(this).attr('href', jQuery(this).attr('href').replace('{FADOQ_Club|remplacement_bloc_president}', "

Responsable des adhésions | activités du club:
M. Robert Leduc  président

")); }); } jQuery('#fadoq-slider-BANNER').html( '
' + '
' + '
' + '').css('text-align', 'center'); var siema_BANNER = new Siema({ selector: '#fadoq-slider-BANNER', duration: 1000, easing: 'ease-out', perPage: 1, startIndex: 0, draggable: true, multipleDrag: true, threshold: 20, loop: true, rtl: false, onInit: () => {}, onChange: () => {}, }); setInterval(function() { siema_BANNER.next(); }, 5000); jQuery('#fadoq-slider-MAIN').html( '
' + '
' + '
' + '').css('text-align', 'center'); var siema_MAIN = new Siema({ selector: '#fadoq-slider-MAIN', duration: 1000, easing: 'ease-out', perPage: 1, startIndex: 0, draggable: true, multipleDrag: true, threshold: 20, loop: true, rtl: false, onInit: () => {}, onChange: () => {}, }); setInterval(function() { siema_MAIN.next(); }, 5000); });