function trim(value){return value.replace(/^\s+/, '').replace(/\s+$/, '');}
function initMenu(){
	$('#dock').Fisheye(
			{
				maxWidth:10,
				items:'a',
				itemsText:'span',
				container:'.dock-container',
				itemWidth:50,
				proximity:50,
				halign:'center'
			}
	);
	$(".dock-item > img").each(
		function(){
			$(this).hover(
				function(){
					this.src="/images/"+this.id+".png";
				},
				function(){
					this.src="/images/"+this.id+"_off.png";
				}
			);
		}
	);
}
function initGallery(){$('#gallery a').lightBox({fixedNavigation:false});
}	
