/*
	gallery v1.0 - Custom gallery for Cheryl Johnson
	(c) Jeremiah Boyd <http://workworkplay.com>
	updated 2010.03.11
*/

(function() {
	window.addEvent('domready', function(){
		wwp.controls.galleryTabs = new TabSwapper({
			selectedClass: 'active',
			tabs: $$('.galleryType li'),
			clickers: $$('.galleryType li a'),
			sections: $$('#galleryLists div'),
			smooth: true,
			smoothSize: false,
			rearrangeDOM: false,
			effectOptions: {
				duration: 250
			}
		});
		wwp.controls.galleryContentTabs = new TabSwapper({
			selectedClass: 'active',
			tabs: $$('.projectName a'),
			sections: $$('.content .gallery'),
			smooth: true,
			smoothSize: false,
			rearrangeDOM: false,
			effectOptions: {
				duration: 250
			}
		});
	});
	
})()
