/**
 * Adjust footer area's position
 */
Event.observe(window,'load',function(){
	try{
		var clientHeight = document.documentElement.clientHeight || document.body.clientHeight;
		var pageHeight = $$('.wrapper')[0].offsetHeight;
		if(pageHeight < clientHeight){
			$$('.middle-container')[0].style.height = $$('.middle-container')[0].offsetHeight + clientHeight - pageHeight + 'px';
		}
	}catch(e){
		//nothing to do
	}
	if($('toolbar-mask')){
		$('toolbar-mask').style.top = '-37px';
	}
	if($('banner-texts')){
		$('banner-texts').style.top = '-55px';
	}
	if($('banner-pager')){
		$('banner-pager').style.top = '-55px';
	}
})