window.addEvent('domready',function(){
	
	/*if($chk($$('#show.slideshow')) && ($chk($('home-page') || $chk($('gallery-page'))))){
	    var myShow = new Slideshow.KenBurns('show', data, {controller: true, height: 350, width: 540, delay: 5000, duration: 2000, thumbnails: useThumbnails});
		
		if($chk($('gallery-controls')) && $chk($('gallery-controls').getElement('.next'))){
							
			$('gallery-controls').getElement('.next').addEvent('click',function(e){
				myShow.next();
				e.stop();
			})
		}
	}
	*/
	// BEGIN ADD OVER TEXT TO ALL INPUTS
	if($$('input, textarea').length){
		$$('input, textarea').each(function(){
											
		})
		new OverText($$('input, textarea'));	
	}
	// END OVER TEXT
	
	
	// BEGIN ADD DATEPICKER TO DATE PICKER INPUTS
	if($$('.date-time-picker').length){
		var today = new Date();
		new DatePicker($$('.date-time-picker'), 
			{
				timePicker:true ,
				format: "d M 'y @ h.i a",
				pickerClass: 'datepicker_vista'
			}
		);
	}
		
	// END DATE PICKER
})

