/**
 * @author Greg
 */
var creacio = {
	
	makeSlideShows: function() {
		new SimpleImageSlideShowDemo({
		imgUrls: ['img/crea_kreuger_ss_1.jpg',
'img/crea_kreuger_ss_2.jpg',
'img/crea_kreuger_ss_3.jpg',
'img/crea_kreuger_ss_4.jpg',
'img/crea_kreuger_ss_5.jpg',
'img/crea_kreuger_ss_6.jpg'],
container: $('crea_kreuger_ss')
		});
		
		/*
		new SimpleImageSlideShowDemo({
		imgUrls: ['img/crea_acad_ss2_1.jpg',
'img/crea_acad_ss2_2.jpg',
'img/crea_acad_ss2_3.jpg',
'img/crea_acad_ss2_4.jpg',
'img/crea_acad_ss2_5.jpg',
'img/crea_acad_ss2_6.jpg',
'img/crea_acad_ss2_7.jpg'],
container: $('crea_acad_ss2')
		});
		*/
		
		new SimpleImageSlideShowDemo({
		imgUrls: ['img/crea_acad_ss2_1.jpg',
'img/crea_acad_ss2_2.jpg',
'img/crea_acad_ss2_3.jpg',
'img/crea_acad_ss2_4.jpg',
'img/crea_acad_ss2_5.jpg',
'img/crea_acad_ss2_6.jpg',
'img/crea_acad_ss2_7.jpg',
'img/crea_acad_ss1_1.jpg',
'img/crea_acad_ss1_2.jpg',
'img/crea_acad_ss1_3.jpg'],
container: $('crea_acad_ss1')
		});
		
		new SimpleImageSlideShowDemo({
		imgUrls: ['img/crea_sala_ss1_1.jpg',
'img/crea_sala_ss1_2.jpg',
'img/crea_sala_ss1_3.jpg',
'img/crea_sala_ss1_4.jpg'],
container: $('crea_sala_ss1')
		});
		
		new SimpleImageSlideShowDemo({
		imgUrls: ['img/crea_sala_ss2_1.jpg',
'img/crea_sala_ss2_2.jpg',
'img/crea_sala_ss2_3.jpg'],
container: $('crea_sala_ss2')
		});
		
		new SimpleImageSlideShowDemo({
		imgUrls: ['img/crea_oli_ss1_1.jpg',
'img/crea_oli_ss1_2.jpg',
'img/crea_oli_ss1_3.jpg',
'img/crea_oli_ss1_4.jpg',
'img/crea_oli_ss1_5.jpg',
'img/crea_oli_ss1_6.jpg'],
container: $('crea_oli_ss1')
		});
		
		new SimpleImageSlideShowDemo({
		imgUrls: ['img/crea_oli_ss2_1.jpg',
'img/crea_oli_ss2_2.jpg',
'img/crea_oli_ss2_3.jpg',
'img/crea_oli_ss2_4.jpg',
'img/crea_oli_ss2_5.jpg',
'img/crea_oli_ss2_6.jpg'],
container: $('crea_oli_ss2')
		});
		
		new SimpleImageSlideShowDemo({
		imgUrls: ['img/crea_media_ss_1.jpg',
'img/crea_media_ss_2.jpg'],
container: $('crea_media_ss')
		});
	},
	
	init:function()
	{
		this.makeSlideShows();
	}
}

window.onDomReady(creacio.init.bind(creacio));