// Slideshow speed (in milliseconds)
var SlideShowSpeed = 10000;

// Duration of crossfade (in seconds)
var CrossFadeDuration = 4;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

Picture[1] = 'images/photos/facilities/IMG_8795_med.jpg';
Picture[2] = 'images/photos/WhitbyOpenHouseFeb20-10/_slideshow/IMG_1756.jpg';
Picture[3] = 'images/photos/facilities/IMG_8757_med.jpg';
Picture[4] = 'images/photos/WhitbyOpenHouseFeb20-10/_slideshow/IMG_1753.jpg';
Picture[5] = 'images/photos/facilities/IMG_8710_med.jpg';
Picture[6] = 'images/photos/WhitbyOpenHouseFeb20-10/_slideshow/IMG_1966.jpg';
Picture[7] = 'images/photos/facilities/IMG_8724_med.jpg';
Picture[8] = 'images/photos/WhitbyOpenHouseFeb20-10/_slideshow/IMG_1991.jpg';
Picture[9] = 'images/photos/facilities/IMG_8810_med.jpg';
Picture[10] = 'images/photos/WhitbyOpenHouseFeb20-10/_slideshow/IMG_2425.jpg';
Picture[11] = 'images/photos/facilities/IMG_8708_med.jpg';
Picture[12] = 'images/photos/WhitbyOpenHouseFeb20-10/_slideshow/IMG_1858.jpg';
Picture[13] = 'images/photos/facilities/IMG_8665_med.jpg';
Picture[14] = 'images/photos/WhitbyOpenHouseFeb20-10/_slideshow/IMG_2464.jpg';
Picture[15] = 'images/photos/facilities/IMG_8724_med.jpg';
Picture[16] = 'images/photos/WhitbyOpenHouseFeb20-10/_slideshow/IMG_2211.jpg';

Caption[1] = "&nbsp;&nbsp;&nbsp;&nbsp;I wanted to thank you for all that you have done for our kids. My family really enjoys coming to your studio for lessons. If we are late picking them up, it is comforting to know they can occupy themselves in a safe environment, playing some guitar hero in your cool party room!";

Caption[2] = "&nbsp;&nbsp;&nbsp;&nbsp;Along with teaching them music skills, the experience/confidence that they are gaining by regularly performing in front of a crowd is priceless. This shows us they really progress well. Look forward to many more shows to come. It was also great to see your teaching staff volunteering their time to help with the acts.";

Caption[3] = "&nbsp;&nbsp;&nbsp;&nbsp;Thanks for all that you do with my kids for their music lessons to build their confidence and music skills. Our kids really enjoy their teacher. They also look forward to your Friday Night jams, meeting new friends from your school. It is an excellent experience for them, and we have also noticed the improvement in school marks.";

Caption[4] = "&nbsp;&nbsp;&nbsp;&nbsp;EXCELLENT show Sunday night at the Wingshack! We had lots of fun. The talent coming out of your school is amazing. The hilite was the 5 year old girls band, performing an original song they wrote. Older teenagers opening the show was a great idea, to show younger students their potential.";

Caption[5] = "&nbsp;&nbsp;&nbsp;&nbsp;The bass workshop, drum clinic and the Wingshack show were awesome and really well done. Nice to know you go an extra mile for all the kids you teach. Your professional instructors worked well with the kids, and we were impressed by the emphasis on practicing techniques and reading music.";

Caption[6] = "&nbsp;&nbsp;&nbsp;&nbsp;Thanks for helping me gain confidence in math. My marks have improved from low 50s to 70s in a short period of time. Your math instructors are very knowledgeable and able to teach me material in your comfortable setting without feeling intimidated. I look forward to getting my marks up to the 80s!";

Caption[7] = "&nbsp;&nbsp;&nbsp;&nbsp;I just had to drop you a line to express how pleased we were with the 'Rock 'n Roll' birthday party we had at your school. As kids arrived, their eyes sparkled with delight, excitement and anticipation! Parents were blown away by your concept and kept inquiring as to how I found such a cool venue and party idea.";

Caption[8] = "&nbsp;&nbsp;&nbsp;&nbsp;Thank you for all that you give back to me and my family, a place to learn and enjoy music. It is a very important art form for us all, more so now with the creative outlet spawned by your imagination. I know that everyone that I have brought out for Creative Math & Music performances or to start their family in the music school have been equally impressed.";

Caption[9] = "&nbsp;&nbsp;&nbsp;&nbsp;Your efforts with John are paying off and we really appreciate it.";

Caption[10] = "&nbsp;&nbsp;&nbsp;&nbsp;You will have great success from your commitment, reliability and your enthusiastic desire to help your students succeed.";

Caption[11] = "&nbsp;&nbsp;&nbsp;&nbsp;Thanks to your unique style and attention to detail, both of my daughters went on to attain high marks in math.";

Caption[12] = "&nbsp;&nbsp;&nbsp;&nbsp;Friendly, warm, disciplined approach to learning with the appropriate levels of encouragement and ongoing support.";

Caption[13] = "&nbsp;&nbsp;&nbsp;&nbsp;Boosted his confidence, and on average increased his mark in math by 10%.";

Caption[14] = "&nbsp;&nbsp;&nbsp;&nbsp;Genuine interest in success and future endeavours of students.";

Caption[15] = "&nbsp;&nbsp;&nbsp;&nbsp;Empathetic and understanding of student's needs.";

Caption[16] = "&nbsp;&nbsp;&nbsp;&nbsp;Builds on strengths of the students.";

// Do not edit anything below this line!

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}


