// JavaScript Document
(function($){
		  var jQuery=$;
	//Adds class to hide content in id spotlight_container and homepage large graphic. This prevent a "flash" of the content build.
	$('html').addClass('js');
  
	$(document).ready(function(){
		//Show slideshow container
		$('.pics img').show();
		//Cycle through images with a fade effect
		$('#slides').cycle({
		fx: 'fade', 
		random:  0,
		speed:    700, 
		timeout:  10000  	
		});
		
		
		//Fade accordion in
		//$('#spotlight_container').fadeIn(3000);
		//Build accordion	  
		//$('#spotlight_container').accordion({
		//  header : 'dt',
		 // panel : 'dd',
		 // fillSpace: true
		//});
	  
	});
})(jQuery);



	

