// 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:  14000     
        });
		
		$('#sept11').dialog({
			height: 600,
			width: 680,
			position: [55,100],
			modal: true
		});

        
        
        //Fade accordion in
        //$('#spotlight_container').fadeIn(3000);
        //Build accordion     
        //$('#spotlight_container').accordion({
        //  header : 'dt',
         // panel : 'dd',
         // fillSpace: true
        //});
      
    });
})(jQuery);



    


