// JavaScript Doc
		window.addEvent('domready', function(){
			
			var accordion = new Accordion('h2.atStart', 'div.atStart',{
				
						//very importent to use display false beacause for this all element will not show without click
						display: false,
						alwaysHide: true,
						opacity: false,
						
					
						onActive: function(toggler,list_box){
							toggler.addClass('sl');
							toggler.removeClass('nl'); 
						},
				
						onBackground: function(toggler,list_box){
							toggler.addClass('nl');
							toggler.removeClass('sl'); 
									
						}
					
				}, $('accordion'));
			var accordion2 = new Accordion('h2.atStart2', 'div.atStart2',{
				
						//very importent to use display false beacause for this all element will not show without click
						display: false,
						alwaysHide: true,
						opacity: false,
						
					
						onActive: function(toggler2,list_box){
							toggler2.addClass('sl');
							toggler2.removeClass('nl'); 
						},
				
						onBackground: function(toggler2,list_box){
							toggler2.addClass('nl');
							toggler2.removeClass('sl'); 
									
						}
					
				}, $('accordion2'));
			var accordion3 = new Accordion('h2.atStart3', 'div.atStart3',{
				
						//very importent to use display false beacause for this all element will not show without click
						display: false,
						alwaysHide: true,
						opacity: false,
						
					
						onActive: function(toggler3,list_box){
							toggler3.addClass('sl');
							toggler3.removeClass('nl'); 
						},
				
						onBackground: function(toggler3,list_box){
							toggler3.addClass('nl');
							toggler3.removeClass('sl'); 
									
						}
					
				}, $('accordion3'));
			
			new SlideItMoo({itemsVisible:4, // the number of thumbnails that are visible
					currentElement: 0, // the current element. starts from 0. If you want to start the display with a specific thumbnail, change this
					thumbsContainer: 'thumbs',
					elementScrolled: 'thumb_container',
					overallContainer: 'gallery_container'});
			
						
		}); 	
