/*
	Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved.
	Available via Academic Free License >= 2.1 OR the modified BSD license.
	see: http://dojotoolkit.org/license for details
*/

/*
	This is an optimized version of Dojo, built for deployment and not for
	development. To get sources and documentation, please visit:

		http://dojotoolkit.org
*/

dojo.provide("boomerang");if(!dojo._hasResource["dojo.cache"]){dojo._hasResource["dojo.cache"]=true;dojo.provide("dojo.cache");(function(){var _1={};dojo.cache=function(_2,_3,_4){if(typeof _2=="string"){var _5=dojo.moduleUrl(_2,_3);}else{_5=_2;_4=_3;}var _6=_5.toString();var _7=_4;if(_4!=undefined&&!dojo.isString(_4)){_7=("value" in _4?_4.value:undefined);}var _8=_4&&_4.sanitize?true:false;if(typeof _7=="string"){_7=_1[_6]=_8?dojo.cache._sanitize(_7):_7;}else{if(_7===null){delete _1[_6];}else{if(!(_6 in _1)){_7=dojo._getText(_6);_1[_6]=_8?dojo.cache._sanitize(_7):_7;}_7=_1[_6];}}return _7;};dojo.cache._sanitize=function(_9){if(_9){_9=_9.replace(/^\s*<\?xml(\s)+version=[\'\"](\d)*.(\d)*[\'\"](\s)*\?>/im,"");var _a=_9.match(/<body[^>]*>\s*([\s\S]+)\s*<\/body>/im);if(_a){_9=_a[1];}}else{_9="";}return _9;};})();}if(!dojo._hasResource["dojo.fx.Toggler"]){dojo._hasResource["dojo.fx.Toggler"]=true;dojo.provide("dojo.fx.Toggler");dojo.declare("dojo.fx.Toggler",null,{node:null,showFunc:dojo.fadeIn,hideFunc:dojo.fadeOut,showDuration:200,hideDuration:200,constructor:function(_b){var _c=this;dojo.mixin(_c,_b);_c.node=_b.node;_c._showArgs=dojo.mixin({},_b);_c._showArgs.node=_c.node;_c._showArgs.duration=_c.showDuration;_c.showAnim=_c.showFunc(_c._showArgs);_c._hideArgs=dojo.mixin({},_b);_c._hideArgs.node=_c.node;_c._hideArgs.duration=_c.hideDuration;_c.hideAnim=_c.hideFunc(_c._hideArgs);dojo.connect(_c.showAnim,"beforeBegin",dojo.hitch(_c.hideAnim,"stop",true));dojo.connect(_c.hideAnim,"beforeBegin",dojo.hitch(_c.showAnim,"stop",true));},show:function(_d){return this.showAnim.play(_d||0);},hide:function(_e){return this.hideAnim.play(_e||0);}});}if(!dojo._hasResource["dojo.fx"]){dojo._hasResource["dojo.fx"]=true;dojo.provide("dojo.fx");(function(){var d=dojo,_f={_fire:function(evt,_10){if(this[evt]){this[evt].apply(this,_10||[]);}return this;}};var _11=function(_12){this._index=-1;this._animations=_12||[];this._current=this._onAnimateCtx=this._onEndCtx=null;this.duration=0;d.forEach(this._animations,function(a){this.duration+=a.duration;if(a.delay){this.duration+=a.delay;}},this);};d.extend(_11,{_onAnimate:function(){this._fire("onAnimate",arguments);},_onEnd:function(){d.disconnect(this._onAnimateCtx);d.disconnect(this._onEndCtx);this._onAnimateCtx=this._onEndCtx=null;if(this._index+1==this._animations.length){this._fire("onEnd");}else{this._current=this._animations[++this._index];this._onAnimateCtx=d.connect(this._current,"onAnimate",this,"_onAnimate");this._onEndCtx=d.connect(this._current,"onEnd",this,"_onEnd");this._current.play(0,true);}},play:function(_13,_14){if(!this._current){this._current=this._animations[this._index=0];}if(!_14&&this._current.status()=="playing"){return this;}var _15=d.connect(this._current,"beforeBegin",this,function(){this._fire("beforeBegin");}),_16=d.connect(this._current,"onBegin",this,function(arg){this._fire("onBegin",arguments);}),_17=d.connect(this._current,"onPlay",this,function(arg){this._fire("onPlay",arguments);d.disconnect(_15);d.disconnect(_16);d.disconnect(_17);});if(this._onAnimateCtx){d.disconnect(this._onAnimateCtx);}this._onAnimateCtx=d.connect(this._current,"onAnimate",this,"_onAnimate");if(this._onEndCtx){d.disconnect(this._onEndCtx);}this._onEndCtx=d.connect(this._current,"onEnd",this,"_onEnd");this._current.play.apply(this._current,arguments);return this;},pause:function(){if(this._current){var e=d.connect(this._current,"onPause",this,function(arg){this._fire("onPause",arguments);d.disconnect(e);});this._current.pause();}return this;},gotoPercent:function(_18,_19){this.pause();var _1a=this.duration*_18;this._current=null;d.some(this._animations,function(a){if(a.duration<=_1a){this._current=a;return true;}_1a-=a.duration;return false;});if(this._current){this._current.gotoPercent(_1a/this._current.duration,_19);}return this;},stop:function(_1b){if(this._current){if(_1b){for(;this._index+1<this._animations.length;++this._index){this._animations[this._index].stop(true);}this._current=this._animations[this._index];}var e=d.connect(this._current,"onStop",this,function(arg){this._fire("onStop",arguments);d.disconnect(e);});this._current.stop();}return this;},status:function(){return this._current?this._current.status():"stopped";},destroy:function(){if(this._onAnimateCtx){d.disconnect(this._onAnimateCtx);}if(this._onEndCtx){d.disconnect(this._onEndCtx);}}});d.extend(_11,_f);dojo.fx.chain=function(_1c){return new _11(_1c);};var _1d=function(_1e){this._animations=_1e||[];this._connects=[];this._finished=0;this.duration=0;d.forEach(_1e,function(a){var _1f=a.duration;if(a.delay){_1f+=a.delay;}if(this.duration<_1f){this.duration=_1f;}this._connects.push(d.connect(a,"onEnd",this,"_onEnd"));},this);this._pseudoAnimation=new d.Animation({curve:[0,1],duration:this.duration});var _20=this;d.forEach(["beforeBegin","onBegin","onPlay","onAnimate","onPause","onStop","onEnd"],function(evt){_20._connects.push(d.connect(_20._pseudoAnimation,evt,function(){_20._fire(evt,arguments);}));});};d.extend(_1d,{_doAction:function(_21,_22){d.forEach(this._animations,function(a){a[_21].apply(a,_22);});return this;},_onEnd:function(){if(++this._finished>this._animations.length){this._fire("onEnd");}},_call:function(_23,_24){var t=this._pseudoAnimation;t[_23].apply(t,_24);},play:function(_25,_26){this._finished=0;this._doAction("play",arguments);this._call("play",arguments);return this;},pause:function(){this._doAction("pause",arguments);this._call("pause",arguments);return this;},gotoPercent:function(_27,_28){var ms=this.duration*_27;d.forEach(this._animations,function(a){a.gotoPercent(a.duration<ms?1:(ms/a.duration),_28);});this._call("gotoPercent",arguments);return this;},stop:function(_29){this._doAction("stop",arguments);this._call("stop",arguments);return this;},status:function(){return this._pseudoAnimation.status();},destroy:function(){d.forEach(this._connects,dojo.disconnect);}});d.extend(_1d,_f);dojo.fx.combine=function(_2a){return new _1d(_2a);};dojo.fx.wipeIn=function(_2b){var _2c=_2b.node=d.byId(_2b.node),s=_2c.style,o;var _2d=d.animateProperty(d.mixin({properties:{height:{start:function(){o=s.overflow;s.overflow="hidden";if(s.visibility=="hidden"||s.display=="none"){s.height="1px";s.display="";s.visibility="";return 1;}else{var _2e=d.style(_2c,"height");return Math.max(_2e,1);}},end:function(){return _2c.scrollHeight;}}}},_2b));d.connect(_2d,"onEnd",function(){s.height="auto";s.overflow=o;});return _2d;};dojo.fx.wipeOut=function(_2f){var _30=_2f.node=d.byId(_2f.node),s=_30.style,o;var _31=d.animateProperty(d.mixin({properties:{height:{end:1}}},_2f));d.connect(_31,"beforeBegin",function(){o=s.overflow;s.overflow="hidden";s.display="";});d.connect(_31,"onEnd",function(){s.overflow=o;s.height="auto";s.display="none";});return _31;};dojo.fx.slideTo=function(_32){var _33=_32.node=d.byId(_32.node),top=null,_34=null;var _35=(function(n){return function(){var cs=d.getComputedStyle(n);var pos=cs.position;top=(pos=="absolute"?n.offsetTop:parseInt(cs.top)||0);_34=(pos=="absolute"?n.offsetLeft:parseInt(cs.left)||0);if(pos!="absolute"&&pos!="relative"){var ret=d.position(n,true);top=ret.y;_34=ret.x;n.style.position="absolute";n.style.top=top+"px";n.style.left=_34+"px";}};})(_33);_35();var _36=d.animateProperty(d.mixin({properties:{top:_32.top||0,left:_32.left||0}},_32));d.connect(_36,"beforeBegin",_36,_35);return _36;};})();}if(!dojo._hasResource["juice.Sidebar"]){dojo._hasResource["juice.Sidebar"]=true;dojo.provide("juice.Sidebar");dojo.declare("juice.Sidebar",null,{_items:[],_targetDomNodeId:"",getDomNodeId:function(){return this._domNodeId;},constructor:function(_37){this._targetDomNodeId=_37.targetDomNodeId;},addItem:function(_38){this._items[this._items.length]=_38;_38._sidebar=this;_38._parentItem=this;return _38;},addToDom:function(){var _39=dojo.create("div",{id:this._targetDomNodeId+"_sidebar"},this._targetDomNodeId);dojo.attr(_39,"class","sidebar");var _3a=_39;for(var i=0;i<this._items.length;++i){this._items[i].addToDom(_3a);_3a=this._items[i]._domNode;}var _3b=0;var _3c=0;for(var _3d=0;_3d<this._items.length;_3d++){var _3e=_3d+this.getItemCount(this._items[_3d]);_3b=_3e>_3b?_3e:_3b;var _3f=this._items[_3d]._domNode.offsetTop+this._items[_3d]._domNode.offsetHeight;_3c=_3f>_3c?_3f:_3c;}var _40=this._items.length;var _41=this._items[_40-1];for(var _3d=_40;_3d<_3b+1;_3d++){var _42=this.addItem(new juice.sidebar.Item({label:"",url:"",parentItem:_41,isInvisible:true}));_42.addToDom(_3a);_41=_42;_3a=_42._domNode;}},onItemClick:function(_43){for(var _44=0;_44<this._items.length;_44++){if(this._items[_44]._url===_43){alert(_43);break;}}},getItemCount:function(_45){var _46=0;for(var _47=0;_47<_45._items.length;_47++){_46+=this.getItemCount(_45._items[_47]);}return _46+1;},setActiveItem:function(_48){for(var _49=0;_49<this._items.length;_49++){if(_48===this._items[_49]){dojo.addClass(this._items[_49]._domNode,"activeSidebarItem");}else{dojo.removeClass(this._items[_49]._domNode,"activeSidebarItem");}this._items[_49].setActiveItem(_48);}}});dojo.declare("juice.sidebar.Item",null,{_sidebar:null,_items:[],_label:"",_cssClass:"",_isCancelCollapseOnClick:"",_url:"",_html:"",_depth:0,_domNode:null,_parentDomNode:null,_parentItem:null,constructor:function(_4a){if(_4a.cssClass){this._cssClass=_4a.cssClass;}this._sidebar=_4a.sidebar;this._parentItem=_4a.parentItem;this._items=[];this._label=_4a.label;this._isCancelCollapseOnClick=_4a.isCancelCollapseOnClick;this._url=_4a.url;this._html=_4a.html;this._isInvisible=_4a.isInvisible;this._isExpanded=false;},addItem:function(_4b){this._items[this._items.length]=_4b;_4b._sidebar=this._sidebar;_4b._parentItem=this;_4b._depth=this._depth+1;return _4b;},addToDom:function(_4c){this._parentDomNode=_4c;this._domNode=dojo.create("div",{id:_4c.id+"_"+this._label},this._parentDomNode);if(!this._isInvisible){dojo.attr(this._domNode,"class","sbarItemBoxL"+this._depth+" "+this._cssClass+" sbarItemBoxActive");}else{dojo.attr(this._domNode,"class","sbarItemBoxL"+this._depth+" "+this._cssClass+" sbarItemBoxInactive");}var _4d=dojo.create("span",{innerHTML:this._label},this._domNode);if(!this._isInvisible){dojo.attr(_4d,"class","sbarItemCaptionL"+this._depth+" "+this._cssClass+" sbarItemBoxActive");}else{dojo.attr(_4d,"class","sbarItemCaptionL0"+" "+this._cssClass+" sbarItemBoxInactive");}var _4e=this.getUpperSibling(this);if(_4e){_4e.collapseNode(_4e,true);}if(this._isInvisible){}else{dojo.connect(this._domNode,"onclick",this,"onClick");for(var i=0;i<this._items.length;i++){this._items[i].addToDom(this._domNode.id);}}},onClick:function(_4f){dojo.forEach(this._items,function(_50){});if(!this._isCancelCollapseOnClick){if(!this._isExpanded){this.expandNode(this);}}if(this._html){var _51=dojo.byId("areaMidMid");dojo.style(_51,"opacity","0");_51.innerHTML=this._html;var _52={node:_51,duration:400};dojo.fadeIn(_52).play();}else{var _53={url:this._url,handleAs:"json",load:function(_54){dojo.byId("areaMidMid").innerHTML="Ajaxed";}};}this._sidebar.setActiveItem(this);if(_4f){dojo.stopEvent(_4f);}},getUpperSibling:function(_55){for(var i=1;i<_55._parentItem._items.length;i++){if(_55===_55._parentItem._items[i]){return _55._parentItem._items[i-1];}}},getLowerSibling:function(_56){for(var i=0;i<_56._parentItem._items.length-1;i++){if(_56===_56._parentItem._items[i]){return _56._parentItem._items[i+1];}}},collapseNode:function(_57,_58){var _59=0;var _5a=_57.getLowerSibling(_57);if(_5a){if(_57._items.length>0){var _59=0;for(var i=0;i<_57._items.length;++i){_59-=_57._items[i]._domNode.offsetHeight;}if(!_58){dojo.fx.slideTo({node:_5a._domNode,top:_59,unit:"px"}).play();}else{dojo.style(_5a._domNode,{position:"relative",top:_59+"px"});var _5b=this._domNode.offsetHeight+_59;dojo.style(this._domNode,{height:_5b+"px"});}}}_57._isExpanded=false;},expandNode:function(_5c){for(var i=0;i<_5c._sidebar._items.length;i++){var _5d=_5c._sidebar._items[i];if(!(_5d===_5c)){if(_5d._isExpanded===true){_5d.collapseNode(_5d);}}}var _5e=_5c.getLowerSibling(_5c);if(_5e){dojo.fx.slideTo({node:_5e._domNode,top:0,unit:"px"}).play();}_5c._isExpanded=true;},setActiveItem:function(_5f){if(this===_5f){dojo.addClass(this._domNode,"activeSidebarItem");}else{dojo.removeClass(this._domNode,"activeSidebarItem");}for(var i=0;i<this._items.length;i++){this._items[i].setActiveItem(_5f);}},onClickLink:function(){}});}if(!dojo._hasResource["boomerang.RenderSideBar"]){dojo._hasResource["boomerang.RenderSideBar"]=true;dojo.provide("boomerang.RenderSideBar");dojo.ready(function(){var _60=dojo.cache("boomerang.html","whatIsPilates.html","<span class=\"pageBodyTitle\">What is Pilates?</span>\r\n<p>\r\nThe central aim of the Pilates method is to develop a mind and body approach to physical fitness and body awareness, working towards a strong mind, body and spirit. The method was developed by Joseph Pilates from the 1920's onwards. Joseph believed in applying specific principles of precision, control, concentration, centering, fluidity and breath through a program of physical movements, challenging the mind to have complete awareness and control over the body. \r\n</p>\r\n\r\n<p>\r\nPilates is about using your mind and body together, working to create a well balanced and strong body. To develop a body that has; grace, agility, strength and suppleness and one that will accommodate the challenges of daily life and physical endeavor with ease. \r\n</p>\r\n\r\n\r\n<p>\r\nDeveloping a strong \"centre\" or \"core\" is crucial to performing the repertoire both safely and effectively, whilst also developing and improving muscle balance, endurance, strength, flexibility and coordination. Pilates also requires a great deal of mental focus throughout the workout, leaving you with a wonderful sense of well being at the end of your workout. \r\n</p>\r\n\r\n\r\n<p>\r\nThe design of the full repertoire of exercises and equipment means that Pilates is suitable and beneficial for people of all ages and activity levels. Whether you are already super active and physically fit, or whether you feel you are unfit and perhaps lead a sedentary lifestyle.  Pilates can help you achieve your personal fitness goals whatever these may be.  \r\n</p>\r\n\r\n");var _61;var _62=new juice.Sidebar({targetDomNodeId:"areaMidLeft"});_62.addItem(new juice.sidebar.Item({label:"Our Studio",cssClass:"ourStudio",html:dojo.cache("boomerang.html","ourStudio.html","<span class=\"pageBodyTitle\">Our Studio</span>\r\n<p>\r\nPilates is a mind and body approach to physical fitness and body awareness, working to create a well-balanced and strong body, mind and spirit.\r\n</p>\r\n<p>\r\nAt Boomerang Pilates Studios, we practice STOTT PILATES - a contemporary approach to Pilates developed by sports scientists, physical therapists and fitness professionals.\r\n</p>\r\n<p>\r\nOur two studios are located in West London in the heart of Kensington and Kew. Both studios are filled with state-of-the-art equipment, allowing us to develop a wide and challenging exercise program.\r\n</p>\r\n<p>\r\nWe offer a range of Pilates classes as well as private lessons. Whether you're a novice or experienced in Pilates methods, recovering from injury, pre or post natal, or if you're a professional athlete, our highly trained instructors will develop a program tailored to your personal needs.\r\n</p>\r\n<p>\r\nTo sign up for classes or for further information, please contact us.\r\n</p>\r\n<p>\r\n<img class=\"matwork\" height=\"533\" width=\"400\" border=\"0\" valign=\"top\" align=\"center\" valign=\"center\" alt=\"Boomerang Pilates\" src=\"Matwork_07A_029sRGB.jpg\"/>\r\n</p>\r\n\r\n")}));_61=_62.addItem(new juice.sidebar.Item({label:"Which Class?",cssClass:"whichClass"}));_61.addItem(new juice.sidebar.Item({isCancelCollapseOnClick:"true",label:"How do you want to train?",cssClass:"howToTrain",html:dojo.cache("boomerang.html","howDoYouWantToTrain.html","<span class=\"pageBodyTitle\">How do you want to train?</span>\r\n\r\n<p><b>\r\nOne to One\r\n</b></p>\r\n<p>\r\nThe most effective and intensive way to train is with your own private lessons. Fully equipped areas and certified instructors provide a complete personal training program, tailored specifically to your individual needs. We begin by gathering a full lifestyle, medical and physical background followed by a static postural analysis. This allows your trainer to format a program of exercises designed to help you achieve your goals safely and effectively. Continual movement analysis and modification of exercises throughout each session ensures you get the very best from your body every time.\r\n</p>\r\n\r\n<p><b>\r\nOne to One Plus\r\n</b></p>\r\n<p>\r\nIf you suffer from regular pain in your back, hips, knees or ankles or alternatively if you wish to improve your sport performance in areas such as golf, tennis, winter sports or running then One to One Plus maybe for you. One to One Plus offers all the benefits of One to One Training but with the additional benefit of a full postural and movement analysis. This analysis begins with a session with either our Osteopath or Physiotherapist, depending on your specific needs, to diagnose areas of muscle imbalance or dysfunction. This allows us to tailor your training program specifically to optimize your biomechanical function and ultimately improve your peak performance.\r\n</p>\r\n\r\n\r\n<p><b>\r\nDuet\r\n</b></p>\r\n<p>\r\nDuet is for two friends or a couple who want to work out together whilst maintaining the focus and progress from a One to One environment.\r\n</p>\r\n\r\n<p><b>\r\nFloating Groups\r\n</b></p>\r\n<p>\r\nFloating Groups offers all the benefits of our One to One Training, including a personally developed training program, but within a group environment. You'll begin with 5-10 private sessions to take you through your induction, foundation and develop a program specific to your level and needs. From there you can book into our floating group sessions at a time to suit you. There will be no more than 5 people to one Instructor who will be keeping a very close eye on your technique. Every 10 sessions you will benefit from a 1 hour private session with an instructor to update and progress your program.\r\n</p>\r\n\r\n<p><b>\r\nGroup Classes\r\n</b></p>\r\n<p>\r\nThis is a great choice for you if you love all the motivation of a group exercise environment. Utilizing the latest STOTT PILATES equipment in our studio, we limit our classes to a maximum of 5 participants. This ensures a premium service with attention from your instructor throughout the class. \r\n</p>\r\n\r\n<br>\r\n<p>\r\n\"<span style=\"font-style:italic;\">In 10 sessions you will feel the difference, in 20 sessions you will see the difference and in 30 sessions you'll have a whole new body</span>\" Joseph Pilates.\r\n</p>\r\n\r\n\r\n")}));_61.addItem(new juice.sidebar.Item({isCancelCollapseOnClick:"true",cssClass:"classType",label:"Which type of class?",html:dojo.cache("boomerang.html","whichTypeOfClass.html","<span class=\"pageBodyTitle\">Which type of class?</span>\r\n\r\n<p>\r\nWe have a wide variety of classes on our schedule, designed to suit all levels of physical ability and personal requirements. Group class numbers are always limited to a maximum of 5 clients per session, thus ensuring your technique is well observed throughout your training. Our instructors constantly review and suggest modifications so that you gain maximum effectiveness from your class in the safest possible way.\r\n</p>\r\n\r\n<p><b>\r\nMat and Small Equipment Classes \r\n</b></p>\r\n<p>\r\nMat based classes focus on strengthening the deep core muscles or \"centre\", improving mobility and stability throughout the entire body. In order to increase challenge to peripheral strength, balance and core stability, we introduce a range of \"small equipment\". Clients will learn how to maximize their workouts using a variety of flex bands, fitness circles, stability balls, toning balls and arc barrels.\r\n</p>\r\n<p><b>\r\nReformer Classes \r\n</b></p>\r\n<p>\r\nThe Reformer machine adds a whole new dimension to your exercise program. It uses a sliding carriage surface with resistance springs, a static bar and two ropes on pulleys in which either feet or hands can be placed. The motion of the carriage adds challenge to core stability, balance and proprioception, whilst the springs and rope pulley system add resistive challenge to muscular strength and endurance. The reformer provides a wide ranging repertoire of exercises for a full and deeply challenging workout.\r\n</p>\r\n<p><b>\r\nV2 Max Plus  \r\n</b></p>\r\n<p>\r\nCombining the Reformer and Cadillac repertoires and adding variable height pulleys on a vertical frame, the V2 Max Plus provides state of the art training. A program, with its foundations firmly rooted in Joseph Pilates' original teachings, STOTT PILATES have developed the V2 Max Plus applying 21st century knowledge of the anatomy and biomechanics. The V2 Max Plus will add a completely new dimension to your fitness and Pilates regime! \r\n</p>\r\n<p><b>\r\nPower Paced Workout \r\n</b></p>\r\n<p>\r\nApplicable to Mat, Reformer and V2 Max Plus classes, this fast moving workout involves continuous exercise for 45-60 minutes. You will transition quickly and smoothly through the exercises for a highly intensive session. To join in these classes you will need to have participated in the foundation course or have previous experience with another Pilates method and taken your free 5 Basic principles class.\r\n</p>\r\n<p><b>\r\nSpecialist Classes\r\n</b></p>\r\n<p>\r\nThere are times when you want to participate in a group exercise program but the general classes may not be suitable. We will include on our schedule group sessions to specifically meet your body's requirements. These include pre and post natal, back care, breast cancer, sports specific training and other special needs.\r\n</p>\r\n")}));_61.addItem(new juice.sidebar.Item({isCancelCollapseOnClick:"true",cssClass:"classLevel",label:"Which level of class?",html:dojo.cache("boomerang.html","whichLevelOfClass.html","<span class=\"pageBodyTitle\">Which level of class?</span>\r\n<b><u>\r\nMat, Reformer and V2 Max Plus\r\n</u></b>\r\n\r\n<p><b>\r\nFoundation Level \r\n</b></p>\r\n<p>\r\nThis is a 6 session introduction to the STOTT PILATES exercise program. Attendance can be weekly for 6 weeks or twice weekly for 3 weeks; this course is designed for those new to STOTT PILATES. It literally lays the foundations for your body to understand and apply the STOTT PILATES 5 Principles of Alignment to your exercise program. Starting with the fundamental exercises you will progress through the levels, challenging yourself to apply the principles to ever more demanding and complex exercises.\r\n</p>\r\n\r\n<p><b>\r\nLevel One\r\n</b></p>\r\n<p>\r\nThis course is at the \"essential level\". With a wide ranging repertoire of challenging exercises we focus on strengthening the core and periphery, mobilizing the spine, hips and shoulders, improving flexibility and building muscle endurance. Using both large and small equipment this level is suitable for clients who have completed the Foundation Course, or have some experience of studio and mat based Pilates<sup>[1]</sup>. \r\n</p>\r\n\r\n<p><b>\r\nLevel Two\r\n</b></p>\r\n<p>\r\nThese sessions are for clients who have attained the \"essential level\" of competency<sup>[2]</sup> and are ready to move through to the intermediate level repertoire. Level Two is designed to further challenge the \"essential level\" benefits. Building on strength and endurance through the core and periphery we will focus on introducing more stamina, coordination and balance to the exercise program. \r\n</p>\r\n\r\n\r\n<p><b>\r\nLevel Three\r\n</b></p>\r\n<p>\r\nThese sessions are for clients who have completed and are competent<sup>[2]</sup> with the Level Two program. Level Three progresses you through to the Advanced Level repertoire and ultimately challenges your strength, endurance, balance, coordination and flexibility. Suited to highly trained clients and sports professionals, these exercises are very challenging.\r\n</p>\r\n\r\n<p><b>\r\nPower Paced Workout (Foundation Level to Level Three)\r\n</b></p>\r\n<p>\r\nApplicable to Mat, Reformer and V2 Max Plus classes, this fast moving workout involves continuous exercise for 45-60 minutes. You will transition quickly and smoothly through the exercises for a highly intensive session. To join in these classes you will need to have participated in the foundation course or have previous experience with another Pilates method and taken your free 5 Basic principles class.\r\n</p>\r\n<br>\r\n<p style=\"font-size: 75%;\">\r\n[1] If you have trained with another method we will give you a free one hour STOTT PILATES basic principles class.\r\n<br>[2] We are committed to our clients exercising safely and effectively. Your instructor will help you choose whether you're in the appropriate level class.\r\n</p> \r\n")}));_61=_62.addItem(new juice.sidebar.Item({label:"About Pilates",cssClass:"aboutPilates"}));_61.addItem(new juice.sidebar.Item({isCancelCollapseOnClick:"true",label:"What is Pilates?",cssClass:"whatIsPilates",html:dojo.cache("boomerang.html","whatIsPilates.html","<span class=\"pageBodyTitle\">What is Pilates?</span>\r\n<p>\r\nThe central aim of the Pilates method is to develop a mind and body approach to physical fitness and body awareness, working towards a strong mind, body and spirit. The method was developed by Joseph Pilates from the 1920's onwards. Joseph believed in applying specific principles of precision, control, concentration, centering, fluidity and breath through a program of physical movements, challenging the mind to have complete awareness and control over the body. \r\n</p>\r\n\r\n<p>\r\nPilates is about using your mind and body together, working to create a well balanced and strong body. To develop a body that has; grace, agility, strength and suppleness and one that will accommodate the challenges of daily life and physical endeavor with ease. \r\n</p>\r\n\r\n\r\n<p>\r\nDeveloping a strong \"centre\" or \"core\" is crucial to performing the repertoire both safely and effectively, whilst also developing and improving muscle balance, endurance, strength, flexibility and coordination. Pilates also requires a great deal of mental focus throughout the workout, leaving you with a wonderful sense of well being at the end of your workout. \r\n</p>\r\n\r\n\r\n<p>\r\nThe design of the full repertoire of exercises and equipment means that Pilates is suitable and beneficial for people of all ages and activity levels. Whether you are already super active and physically fit, or whether you feel you are unfit and perhaps lead a sedentary lifestyle.  Pilates can help you achieve your personal fitness goals whatever these may be.  \r\n</p>\r\n\r\n")}));_61.addItem(new juice.sidebar.Item({isCancelCollapseOnClick:"true",label:"What is Stott Pilates?",cssClass:"whatIsStottPilates",html:dojo.cache("boomerang.html","whatIsStottPilates.html","<span class=\"pageBodyTitle\">What is Stott Pilates?</span>\r\n<p>\r\nSTOTT PILATES was co-founded over 20 years ago by Moira and Lindsay G. Merrithew. Having studied the original method for many years a more contemporary approach has been developed, with input from sports medicine, physical therapists and fitness professionals. STOTT PILATES have spent more than a decade refining the method and equipment. By incorporating the most modern principles of exercise science and spinal rehabilitation, it is one of the safest and effective training methods available. This clear and detailed approach forms the basis for STOTT PILATES training and certification. It is used with great affect by; rehab and prenatal clients, athletes, celebrities and everyone in between.\r\n</p>\r\n\r\n<p>\r\n<b>What is the difference between STOTT PILATES and other Pilates Techniques?</b>\r\n</p>\r\n\r\n<p>\r\nSTOTT PILATES incorporates modern exercise principles, including contemporary thinking about spinal rehabilitation and athletic performance. For example, some approaches may promote a flat back, whereas STOTT PILATES exercises are designed to restore the natural curves of the spine and re-balance the muscles around joints, placing more emphasis on shoulder stabilization.  Additionally there are more preparatory exercises and modifications to cater to many different body types and abilities, making it applicable to every day life.\r\n</p>\r\n\r\n<p><b>\r\nWhat are the Benefits of STOTT PILATES?\r\n</b></p>\r\n\r\n<ul>\r\n<li>Longer, leaner muscles (less bulk, more freedom of movement)</li>\r\n<li>Improves postural problems</li>\r\n<li>Core strength, stability and peripheral mobility</li>\r\n<li>Helps prevent injury</li>\r\n<li>Enhances functional fitness - ease of movement</li>\r\n<li>Balances strength and flexibility</li>\r\n<li>Heightens body awareness</li>\r\n<li>Low impact, easy on the joints</li>\r\n<li>Customized from rehab to elite athlete</li>\r\n<li>Complements other forms of exercise</li>\r\n<li>Improves sports performance</li>\r\n<li>Improves balance, co-ordination and circulation</li>\r\n</ul>\r\n\r\n<p><b>\r\nThe STOTT PILATES Five Basic Principles of Alignment\r\n</b></p>\r\n<p>\r\nThere are 5 basic principles that provide the foundation of STOTT PILATES; they are biomechanical and body awareness issues that will help you perform the exercises safely and effectively. The principles teach us correct breathing and how to position our body through the exercises. These principles will help make you more aware of your \"core\" or \"center\" also bringing awareness to where and how your body should move. \r\n</p>\r\n<ul>\r\n<li>Breathing</li>\r\n<li>Pelvic and lumbar placement</li>\r\n<li>Rib cage placement</li>\r\n<li>Scapular movement and stabilization</li>\r\n<li>Head and cervical placement</li>\r\n</ul>\r\n<p>\r\nWe will teach you what each principle is about, why we apply them and most importantly how to apply them throughout your workouts.  As your skill and physical fitness improve, you will move from a novice level applying the principles to ever more demanding and challenging exercises. \r\n</p>\r\n\r\n")}));_61=_62.addItem(new juice.sidebar.Item({label:"Our Instructors"}));_61.addItem(new juice.sidebar.Item({isCancelCollapseOnClick:"true",label:"Amanda Kitchen",html:dojo.cache("boomerang.html","AmandaKitchen.html","<span class=\"pageBodyTitle\">Amanda Kitchen - Teacher Trainer and Senior Instructor</span>\r\n\r\n<p>\r\nAmanda Kitchen trained as a classical ballet dancer until the age of 21 before working as a personal trainer and sports massage therapist at the Riverside Club Chiswick. There she gained qualifications with the American College of Sports Medicine (ACSM), YMCA and the Federation of Sports Massage Therapists (FSMT).  In January 2000, Amanda enrolled with STOTT PILATES and began her Pilates training, subsequently becoming self employed and taking on her own clients around West London. Having excelled in her training with STOTT PILATES, based in Toronto, she is now the only fully certified Instructor Trainer working in the UK and as such is qualified to not only teach clients but to also teach and examine STOTT PILATES teachers. \r\n</p>\r\n\r\n<p>\r\nAmanda divides her time between training clients and training students to become Pilates teachers.\r\n</p>\r\n\r\n<p>\r\nAmanda will be teaching Pilates within One to Ones and Group Classes at Kensington. With a wealth of experience she specializes in injury and illness rehabilitation, regularly working with osteopaths, physiotherapists and surgeons. She has over 15 years experience working with pre and post natal clients. Amanda is also available to work with athletes and dancers to improve performance and rehabilitate from injury. She regularly presents at fitness conventions in the UK and also tutors in Europe.  \r\n</p>\r\n\r\n<p>\r\nAttending small supervised classes ensures you stay motivated and that you exercise both effectively and safely throughout. All of your teachers are students of STOTT PILATES. We complete continuing educational credits each year and every month I run a new training session keeping all of your teachers updated with the very latest developments in Pilates training. If you wish to know more about our education and training please visit www.stottpilates.com/education. \r\n</p>\r\n")}));_61=_62.addItem(new juice.sidebar.Item({label:"Contact & Location"}));_61.addItem(new juice.sidebar.Item({isCancelCollapseOnClick:"true",label:"Kensington",html:dojo.cache("boomerang.html","locationKensington.html","<span class=\"pageBodyTitle\">Our Kensington Studio</span>\r\n<p>\r\nConveniently located in the David Lloyd Health Club we are two minutes walk from Gloucester Road underground station. \r\n</p>\r\n<p>\r\nDavid Lloyd Kensington, \r\n<br>Point West, \r\n<br>116 Cromwell Road,\r\n<br>South Kensington,\r\n<br>London SW7 4XR.\r\n<br>\r\n<br>Telephone: 07710 376 785\r\n<br>Email: Kensington@BoomerangPilates.com\r\n</p>\r\n\r\n<iframe width=\"600\" height=\"600\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=David+Lloyd+near+Cromwell+Road,+Kensington,+United+Kingdom&amp;sll=51.495425,-0.187905&amp;sspn=0.011369,0.020943&amp;g=116+Cromwell+Rd&amp;ie=UTF8&amp;hq=David+Lloyd&amp;hnear=Cromwell+Rd,+Kensington,+Greater+London,+United+Kingdom&amp;cid=18026793399087535916&amp;ll=51.495599,-0.187883&amp;spn=0.032062,0.051413&amp;z=14&amp;iwloc=A&amp;output=embed\"></iframe>\r\n\r\n")}));_61.addItem(new juice.sidebar.Item({isCancelCollapseOnClick:"true",label:"Richmond/Kew",html:dojo.cache("boomerang.html","locationKew.html","<span class=\"pageBodyTitle\">Our Richmond/Kew Studio</span>\r\n<p>\r\nWe are located between Richmond, Kew and North Sheen stations. \r\n</p>\r\n\r\n<p>\r\nOld Station Works,\r\n<br>119-123 Sandecombe Road,\r\n<br>Richmond,\r\n<br>Surrey TW9 2EP.\r\n<br>\r\n<br>Telephone: 07710 376 785\r\n<br>Email: Kew@BoomerangPilates.com\r\n</p>\r\n\r\n\r\n<iframe width=\"600\" height=\"600\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.co.uk/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=Boomerang+Pilates,+Richmond&amp;sll=53.800651,-4.064941&amp;sspn=9.063238,39.067383&amp;ie=UTF8&amp;hq=Boomerang+Pilates,&amp;hnear=Richmond,+Greater+London,+United+Kingdom&amp;ll=51.473685,-0.289078&amp;spn=0.032077,0.051584&amp;z=14&amp;iwloc=A&amp;output=embed\"></iframe>\r\n")}));_62.addToDom();_62._items[0].onClick();});}if(!dojo._hasResource["boomerang.Boomerang"]){dojo._hasResource["boomerang.Boomerang"]=true;dojo.provide("boomerang.Boomerang");}

