var SPECIALCONTENT = {

	//------------------------------------------------------------------------

	init:function() {
		Cufon.replace('h1');
		IMAGEGALLERY.init();
		this.set_portraitBox();
	},

	//------------------------------------------------------------------------

	set_portraitBox:function() {
		if( $('portraitBox_image') ) {
			var portrait = $('portraitBox_image');
			var img = portrait.getElementsByTagName('img')[0];
			if( (AJAXLOADER.content.offsetHeight+1) > img.offsetHeight ) {
				portrait.style.top = 'auto';
				portrait.style.bottom = '0px';
				portrait.style.height = img.offsetHeight + 'px';
			} else {
				portrait.style.height = AJAXLOADER.content.offsetHeight + 1 + 'px';
			}
			portrait.style.width = img.offsetWidth + 'px';
			delete portrait;
			delete img;
		}
	}

	//------------------------------------------------------------------------

};

//----------------------------------------------------------------------------

window.addEvent('load',function(){SPECIALCONTENT.init();});
