// 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:

Cartes de membres:  Michelle Tétreault 450-796-5907

Responsable des activités hebdomadaires:  Nicole Racine  450-230-0317

Info voyage :  Claire Vigeant  450 796-3165

 

ACTIVITÉS RÉGULIÈRES : 

Lundi - Cours danse en ligne 18h30 (débutant) et 19h45 (avancé) Cours de danse: Claire et Jean-Louis Nadeau
Mardi 13h00 - Pétanque sur tapis

Jeudi 13h - Jeux de cartes variés et palet américain (Galet)  Collation inclus

 

ACTIVITÉS MENSUELLES :

2e samedi du mois - danse dès 19h30 (sauf juin, juillet et août)
                                   Soirée de danse social et de ligne suivi d'un buffet froid à 23h00.  Musique de Michel Lafrance

 

ACTIVITÉS ANNUELLES DE 2016:


7 avril 2016 - Dîner des sucres St-Jude (Transport avec votre voiture) Dès 10h30 dîner et tire sur la neige à volonté, danse
12 avril 2016 -
16h00 Assemblée générale annuelle
1 mai 2016 -
11h00 30e anniversaire du club
14 mai 2016 - 17h30 Souper Méchoui avec danse pour la Fête des Mères et des Pères


 

 

VOYAGES ORGANISÉS :

 

25 mai 2016 - Visite à Nicolet  départ de St-Thomas à 8h00  Départ de St-Hyacinthe à 8h15

29 juin 2016 - Croisière Lachance Berthier-sur-Mer   Départ de St-Thomas à 6h55   Départ de St-Hyacinthe à 7h10

20 juillet 2016 - Sainte-Anne-de-Beaupé  Départ de St-Thomas à 8h00   Départ de StHyacinthe à 8h15

17 août 2016 - Maison St-Gabriel   Départ St-Thomas à 9h00   Départ de St-Hyacinthe à 9h15

14 septembre 2016 - St-Eustache et Laval-Ste-Dorothé avec guide accompagnatrice Sylvie Gagnon   Départ St-Thomas à 8h00   Départ St-Hyacinthe à 8h15

21-22-23 ocrobre 2016 - Noël en automne  Hôtel Le Manoir du Nord (Sainte-Adèle)  Départ St-Thomas à 12h30  Départ de St-Hyacinthe à 12h45

 

ATTENTION:  TOUS LES BILLETS DOIVENT ÊTRE PAYÉS EN TOTALITÉ UN MOIS AVANT LE DÉPART.  
CHÈQUE FAIT À CLAIRE VIGEANT
7280 Boul. Laframboise St-Hyacinthe, Qc  J2R1A8

 

 

 

"); }); } 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:

Cartes de membres:  Michelle Tétreault 450-796-5907

Responsable des activités hebdomadaires:  Nicole Racine  450-230-0317

Info voyage :  Claire Vigeant  450 796-3165

 

ACTIVITÉS RÉGULIÈRES : 

Lundi - Cours danse en ligne 18h30 (débutant) et 19h45 (avancé) Cours de danse: Claire et Jean-Louis Nadeau
Mardi 13h00 - Pétanque sur tapis

Jeudi 13h - Jeux de cartes variés et palet américain (Galet)  Collation inclus

 

ACTIVITÉS MENSUELLES :

2e samedi du mois - danse dès 19h30 (sauf juin, juillet et août)
                                   Soirée de danse social et de ligne suivi d'un buffet froid à 23h00.  Musique de Michel Lafrance

 

ACTIVITÉS ANNUELLES DE 2016:


7 avril 2016 - Dîner des sucres St-Jude (Transport avec votre voiture) Dès 10h30 dîner et tire sur la neige à volonté, danse
12 avril 2016 -
16h00 Assemblée générale annuelle
1 mai 2016 -
11h00 30e anniversaire du club
14 mai 2016 - 17h30 Souper Méchoui avec danse pour la Fête des Mères et des Pères


 

 

VOYAGES ORGANISÉS :

 

25 mai 2016 - Visite à Nicolet  départ de St-Thomas à 8h00  Départ de St-Hyacinthe à 8h15

29 juin 2016 - Croisière Lachance Berthier-sur-Mer   Départ de St-Thomas à 6h55   Départ de St-Hyacinthe à 7h10

20 juillet 2016 - Sainte-Anne-de-Beaupé  Départ de St-Thomas à 8h00   Départ de StHyacinthe à 8h15

17 août 2016 - Maison St-Gabriel   Départ St-Thomas à 9h00   Départ de St-Hyacinthe à 9h15

14 septembre 2016 - St-Eustache et Laval-Ste-Dorothé avec guide accompagnatrice Sylvie Gagnon   Départ St-Thomas à 8h00   Départ St-Hyacinthe à 8h15

21-22-23 ocrobre 2016 - Noël en automne  Hôtel Le Manoir du Nord (Sainte-Adèle)  Départ St-Thomas à 12h30  Départ de St-Hyacinthe à 12h45

 

ATTENTION:  TOUS LES BILLETS DOIVENT ÊTRE PAYÉS EN TOTALITÉ UN MOIS AVANT LE DÉPART.  
CHÈQUE FAIT À CLAIRE VIGEANT
7280 Boul. Laframboise St-Hyacinthe, Qc  J2R1A8

 

 

 

")); }); } while(jQuery("p:contains('{FADOQ_Club|image}')").length) { jQuery("p:contains('{FADOQ_Club|image}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|image}', ""); }); } 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}', "")); }); } 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-20 15:43:16"); }); } 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-20 15:43:16")); }); } 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}', "13"); }); } 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}', "13")); }); } 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}', "Adhésion un an"); }); } 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}', "Adhésion un an")); }); } 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}', "Adhésion pour 2 ans"); }); } 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}', "Adhésion pour 2 ans")); }); } while(jQuery("p:contains('{FADOQ_Club|prix2}')").length) { jQuery("p:contains('{FADOQ_Club|prix2}')").each(function() { this.innerHTML = this.innerHTML.replace('{FADOQ_Club|prix2}', "45.00"); }); } 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}', "45.00")); }); } 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}', "45 dollars"); }); } 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}', "45 dollars")); }); } 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/ClubAquinois_prix.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/ClubAquinois_prix.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/ClubAquinois_prix.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/ClubAquinois_prix.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}', "15"); }); } 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}', "15")); }); } 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}', "1"); }); } 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}', "1")); }); } 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}', "45"); }); } 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}', "45")); }); } 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}', "0"); }); } 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}', "0")); }); } 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 2020 : 


Cartes de membres: Jeannette Courchesne 450 778-7146
Voyages :  Claire Vigeant 450 252-7896
Activités (Centre Aquinois) :Jacqueline Baron  450 796-2737

 

Lundi  ; Cours de danse en ligne 
18 h 15 : intermédiaire 1,
19 h 30 : Intermédiaire 2

Mardi 13 h : Pétanque sur tapis, jeux de cartes 
Jeudi 13 h : Cribble, palet américain, jeux de cartes variés
1e jeudi/mois 13 h 15: Tournoi de crible
4e vendredi/mois 19 h 30 : Danse en ligne
2e samedi/mois 19 h 30 : Danse sociale et en ligne

 

"); }); } 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 2020 : 


Cartes de membres: Jeannette Courchesne 450 778-7146
Voyages :  Claire Vigeant 450 252-7896
Activités (Centre Aquinois) :Jacqueline Baron  450 796-2737

 

Lundi  ; Cours de danse en ligne 
18 h 15 : intermédiaire 1,
19 h 30 : Intermédiaire 2

Mardi 13 h : Pétanque sur tapis, jeux de cartes 
Jeudi 13 h : Cribble, palet américain, jeux de cartes variés
1e jeudi/mois 13 h 15: Tournoi de crible
4e vendredi/mois 19 h 30 : Danse en ligne
2e samedi/mois 19 h 30 : Danse sociale et en ligne

 

")); }); } 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}', ""); }); } 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}', "")); }); } 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}', "

Centre communautaire Aquinois

Mardi: 13h00 à 16h00
Jeudi: 13h00 à 16h00

"); }); } 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}', "

Centre communautaire Aquinois

Mardi: 13h00 à 16h00
Jeudi: 13h00 à 16h00

")); }); } 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}', "

INFO: 450-418-7008

Les activités ont lieu au 5925 ave Pinard, Saint-Hyacinthe
au Centre communautaire Aquinois
et sont gratuites pour les membres.

 

Nouvelle adhésion ou renouvellement de votre carte de membre:
les mardis et jeudis entre 13h00 et 16h00

Nous vous offrons 3 méthodes de paiement:

1. Par carte de crédit

2. Par chèque

3. En argent

Pour plus d'information, vous pouvez contacter
Jocelyne Bédard
450-418-7008 poste #1

"); }); } 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}', "

INFO: 450-418-7008

Les activités ont lieu au 5925 ave Pinard, Saint-Hyacinthe
au Centre communautaire Aquinois
et sont gratuites pour les membres.

 

Nouvelle adhésion ou renouvellement de votre carte de membre:
les mardis et jeudis entre 13h00 et 16h00

Nous vous offrons 3 méthodes de paiement:

1. Par carte de crédit

2. Par chèque

3. En argent

Pour plus d'information, vous pouvez contacter
Jocelyne Bédard
450-418-7008 poste #1

")); }); } 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}', "

Les activités régulières:

Pétanque sur tapis       les mardis        13h à 16h      

Cartes (canasta)          les mardis         13h à 16h

Danse en ligne           les mercredis.   13h30 à 16h. Coût: 7$

Palet américain            les jeudis           13h à 16h

Cartes ou cribble           les jeudis           13h à 16h

"); }); } 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}', "

Les activités régulières:

Pétanque sur tapis       les mardis        13h à 16h      

Cartes (canasta)          les mardis         13h à 16h

Danse en ligne           les mercredis.   13h30 à 16h. Coût: 7$

Palet américain            les jeudis           13h à 16h

Cartes ou cribble           les jeudis           13h à 16h

")); }); } 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}', "

ACTIVITÉS DU CLUB
Saison 2022-2023

\"\"
 

Lundi

18h00 à 19h00 : Cours de danse débutant (coût 7 $)

19h30 à 20h30 : Cours de danse intermédiaire (coût 7 $)

 

Mardi

13 h 00 à 16h00 : Pétanque sur tapis 

13 h 00 à 16h00 : Jeux de cartes (canasta)

 

Mercredi

13 h 30 à 16h00 : Activité de danse en ligne (coût 7 $)
 

Jeudi

13 h 00 à 16h00 : Palet américain (shuffleboard)

13 h 00 à 16h00 : Jeux de cartes ou cribble

 

Samedi (2e du mois)

19 h 30 : Soirée de danse en ligne

 

Activités spéciales

Samedi 8 octobre 17h30: Souper spaghetti, suivi d'une soirée de danse.
 

"); }); } 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}', "

ACTIVITÉS DU CLUB
Saison 2022-2023

\"\"
 

Lundi

18h00 à 19h00 : Cours de danse débutant (coût 7 $)

19h30 à 20h30 : Cours de danse intermédiaire (coût 7 $)

 

Mardi

13 h 00 à 16h00 : Pétanque sur tapis 

13 h 00 à 16h00 : Jeux de cartes (canasta)

 

Mercredi

13 h 30 à 16h00 : Activité de danse en ligne (coût 7 $)
 

Jeudi

13 h 00 à 16h00 : Palet américain (shuffleboard)

13 h 00 à 16h00 : Jeux de cartes ou cribble

 

Samedi (2e du mois)

19 h 30 : Soirée de danse en ligne

 

Activités spéciales

Samedi 8 octobre 17h30: Souper spaghetti, suivi d'une soirée de danse.
 

")); }); } 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}', "5996c6639e06d84f81b24d7d6b96dcdc.jpg"); }); } 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}', "5996c6639e06d84f81b24d7d6b96dcdc.jpg")); }); } 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}', "

Ceci est un test

"); }); } 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}', "

Ceci est un test

")); }); } 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}', ""); }); } 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}', "")); }); } 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); });