var EF_Quotes = {

	data: [				
		
		{
			quote: '&#8220;The makeup class has been a great experience; I have learned a variety of techniques that will be useful in the future.&#8221;',
			author: 'Whitney White, Nebraska',
		},
		{
			quote: '&#8220;The makeup classes showed me that you can make anything look like the way you want with the right techniques. I really had a great time!&#8221;',
			author: 'Stephanie Leh, Brazil',
		},
		{
			quote: '&#8220;The International Film Workshop equals learning including hands-on experience in the midst of Hollywood.&#8221;',
			author: 'Bengt-Oliver Stellmann, Germany',
		},
				{
			quote: '&#8220;This International Film Workshop is view of Hollywood, behind the scenes! I have learned a lot during this training. I am so motivated and can&#8217;t wait to begin my career in the film industry applying the knowledge I have gained!&#8221;',
			author: 'Veronika Gruber, Germany',
		},
		{
			quote: '&#8220;The International Film Workshop provided me with great insight into the authentic film industry. Since taking the course, I have applied my gained knowledge to every project that has come my way. Due to the international education listed on my resume, doors have opened wide for me. I applied for two internships: one at a major television station, another at one of Germany&#8217;s best-known film studios, and was offered both positions!&#8221;',
			author: 'Marlena Weber, Germany',
		},
		{
			quote: '&#8220;Meine Erfahrungen in Amerika haben mich nicht nur beruflich bereichert, sondern auch als Person gestarkt. Ich habe viele neue Einblicke und Ideen gewonnen, die ich bald umsetzten mochte.&#8221;',
			author: 'Jenny Bock, Germany',
		},
		{
			quote: '&#8220;The International Film Workshop taught me about filmmaking while experiencing Hollywood&#8217;s exciting film industry. A great experience!&#8221;',
			author: 'Felix von Poser, Germany',
		},
		{
			quote: '&#8220;I apply the knowledge gained during this workshop on a day-to-day basis working successfully in production. The workshop also helped to strengthen me as a person.&#8221;',
			author: 'Bengt-Oliver Stellmann, Germany',
		},
		{
			quote: '&#8220;My weekly vocal training was a wonderful experience! My teacher discovered my specific weakness in singing early on and taught me techniques to overcome it. Our band performances back home in Japan have been very successful due to the American style I learned! I practice every day, remembering what my teacher taught me. My world has changed and my singing has improved dramatically because of my vocal training in L.A.&#8221;',
			author: 'Koki Muto, Japan',
		},
		{
			quote: '&#8220;Iris is an amazing teacher! She blends her deeply rooted knowledge and dance experience with her intuitiveness to create each dance class as a new experience. Iris employs great sensitivity toward each student in the class, creating a very pleasant and inspiring environment in which to explore the different dance styles. She has a unique capability to make everyone feel welcome and encourages each student to explore, try, practice and most of all, have FUN! I can highly recommend the Steinlein Productions dance classes and I&#8217;m already looking forward to the next class... cha-cha-cha.&#8221;',
			author: 'Petra Korn, Attorney, California and Germany',
		},
		{
			quote: '&#8220;My experience in the Steinlein Productions Acting Training Course was extremely interesting. I learned a lot while enjoying the classes. I am most thankful for having found such an inspirational program and great teacher.&#8221;',
			author: 'Juan Garcia, Spain',
		},
		{
			quote: '&#8220;This yoga training is like a gentle, spiritual dance that is unifying and grounding.&#8221;',
			author: 'Karen Cleaver, California',
		},
		{
			quote: '&#8220;A simple thank you is not enough to express my sincere appreciation and gratitude for your dedication and professionalism. Since June of 2002, I have looked forward to our weekly visits, not only for the benefits of Yoga but also for the wonderful energy you bring to our classes. My life has changed physically and spiritually due to your influence. I feel extremely blessed to have you in my life. God bless you!&#8221;',
			author: 'Irene Easter, California',
		},

	],	
	init: function()
	{
		this.get();
	},		
	get: function()
	{		
		var r = Math.floor(Math.random()*(this.data.length));
		var sel = this.data[r];		
		document.getElementById('quotes').innerHTML = sel.quote;
		document.getElementById('author').innerHTML = sel.author;	
	}	
}