var box = {};

window.addEvent('domready', function(){
	box = new MultiBox('mb', {openFromLink: true, descClassName: 'multiBoxDesc', useOverlay: true});
	
	var hash = location.hash;
	if (hash.length > 1) {
		var realhash = hash.replace(/.*#/, '');
		var realElt = realhash.replace(/^link-/, 'h2-');
		if ($(realElt) != null && realElt != realhash) {
			scrollEffect.toElement(realElt);
		}
		
	}
});