/*
gallery.js
    handle the image gallery (if any)
*/


//activateGallery: activates gallery if it exists
function activateGallery(){
	$('ul#image_gallery').innerfade({
		speed: 1000,
		timeout: 6000,
		type: 'sequence',
		containerheight: '266px'
	});
	$('li','#image_gallery').removeClass('no_show');
    return void[0];
}


