document.write("<style type='text/css'>div.navigation{width:300px;float: left;}div.workgallery{display:block;}</style>");

			$(document).ready(function() {
				var gallery1 = $('#gallery1').galleriffic('#navigation1', {
					delay:								2000,
					numThumbs:						15,
					imageContainerSel:		'#slideshow1',
					controlsContainerSel:	'#controls1',
					titleContainerSel:		'#image-title1',
					descContainerSel:			'#image-desc1',
					downloadLinkSel:			'#download-link1'
				});
				gallery1.onFadeOut = function() {
					$('#details1').fadeOut('fast');
				};
				gallery1.onFadeIn = function() {
					$('#details1').fadeIn('fast');
				};
			});