// JavaScript Document

var comments = new Array(

'\'Jenny conducted a series of job ready workshops to our Yr 10 students who were transitioning into Yr 11 and 12 or into an apprenticeship. She also ran a workshop for the parents outlining their child\'s options as well as a workshop to the staff in how to integrate a career development culture into their lesson plans. Jenny\'s hints and tips were well received by all.\' - Andrea Strudwick, Secondary Deputy Principal, Kambalda West',

'\'Jenny\'s workshops are very informative and well received by participants. The workshops give young people simple and practical ideas about how to manage themselves so that they can pay their bills and still have a life. Jenny\'s teaching background enables her to relate to young people at their level which creates a relaxed tone to the workshop(s).\' - Claire Hughes, Children and Youth Services Librarian',

'\'Jenny really helped me towards the end of Yr 12 with my application for university as well as doing up a generic resume. With her help, I was able to get into my first choice at university and get myself a part-time job.\' - Megan Balderson, Yr 12 Student',

'\'Thanks Jenny for helping us to achieve our career goals in the mining and civil construction areas!\' <br />- Adele and Mark',

'\'Jenny presented a superb workshop to my staff. She was professional, engaging and very articulate. My staff and I found the workshop and the manner in which it was presented to be of the highest standard and extremely beneficial to our team.\' Top qualities: Personable, Good Value, Creative - Keenan Rodericks, hired Jenny as a Workshop Facilitator in 2010 and 2011.',


'\'Jenny Gleeson has consistently demonstrated her exemplary training and facilitation skills to engage with a number of difficult target groups (e.g. youth people at risk, unemployed, etc.). Through her excellent skillsets and enthusiasm she has assisted in positively changing lives.\' - Ben Berrell, Owner/Principal, Break!Out Consulting Services & Associates',
						 
'\'Jenny has developed an enviable reputation in her local community as a career practitioner of the highest standard... she is able to develop an innovative and effective career program based upon community needs\' - Shaun Guyton, Manager, Career Centre', 

'\'The budgeting information and the way it was presented was extremely beneficial... with participants feeling comfortable to ask you any questions\' - Sinead Gilligan, Youth Coordinator,  Eastern Goldfields YMCA',

'\'Your presentation generated a number of interesting strategies around ways to effectively engage with community and industry to achieve meaningful significant outcomes\' - Kevin Brahim, State Manager, Dept of Education, Science and Training',

'\'You did a great job; we all loved having you here! Personality was warm and teaching skills are great. Hope another Dimensions course is developed to follow on from this one.\' - City of Kalgoorlie-Boulder participant',

'\'I can now make my resume look professional, how to perform in an interview, write a good application letter to get my resume noticed, the importance of following up when I apply for a position and feel I have a better chance of getting a job\' - Kambalda West Year 10 Student',

'\'Congratulations - it was one of the best courses/presentations I have ever attended. I will recommend you to all staff!\' - Alacer Gold, Leading Hand'

);
var current = 0;
var element = document.getElementById('testimonials');

/* cross browser method to set opacity */
function setOpacity(level) {
  element.style.opacity = level;
  element.style.MozOpacity = level;
  element.style.KhtmlOpacity = level;
  element.style.filter = "alpha(opacity=" + (level * 100) + ");";
}

/* rotate and create timers to fade the testimonial in */
function fadeIn(){
  element.innerHTML = comments[current];
  current = (current + 1) % comments.length;
  for (i = 0; i <= 1; i = i + 0.05) {
	setTimeout("setOpacity(" + i + ")", i * 1000);
  }
  setTimeout("fadeOut()", 12000);
}

/* create timers to fade the testimonial away */
function fadeOut() {
  for (i = 0; i <= 1; i = i + 0.05) {
	setTimeout("setOpacity(" + (1 - i) + ")", i * 1000);
  }
  setTimeout("fadeIn()", 1000);
}
fadeIn(); 

