/* Declare a namespace for the site */
var Site = window.Site || {};

/* Create a closure to maintain scope of the '$'
   and remain compatible with other frameworks.  */
(function($) {
	
	//same as $(document).ready();
	$(function() {
		
		$('#product-logos ul').innerfade({
				animationtype: 'fade',
				speed: 2000,
				timeout: 6000,
				type: 'random',
				containerheight: '67px'
			});
	

	});


	$(window).bind("load", function() {
		
		$('#staff-pics').masonry({
			  singleMode: true, 
			  itemSelector: 'li' 
});
	
	});
	
})(jQuery);
