// JavaScript Document
 $(document).ready(				   				   
   
   function(){ 
	   $('#accolades').innerfade({ 
			speed: 'slow', timeout: 4000, type: 'sequence', containerheight: '220px' 
			
		});
	   
	   $(document).pngFix(); 
	   
   } 
 );
 

/*
jQuery(function($) {

	 $('#collage').crossSlide({
	  fade: 1
	}, [
	  {
		src:  'images/collage.jpg',
		//href: 'http://flickr.com/photos/spacetrucker/94209642/',
		from: '100% 80% 1x',
		to:   '100% 0% 1.7x',
		time: 3
	  }, 
	  
  		{
		src:  'images/collage2.jpg',
		//href: 'http://flickr.com/photos/hichako/1125341449/',
		from: 'top left',
		to:   'bottom right 1.5x',
		time: 2
	  },
	  {
		src:  'images/slideshow/diningroom.jpg',
		//href: 'http://flickr.com/photos/jayniebell/1125216143/',
		from: '100% 80% 1.5x',
		to:   '80% 0% 1.1x',
		time: 2
	  }
	]);	


});
*/