function BuildPage(){
//	Скрипт галереи
	if (document.getElementById('gallery')) {
		var	itemBor=12,
				scrollH=0;
		$('#gallery img').css('left','50%');
		$('#gallery .item').each(function(i){
			var	Mleft=-Math.floor($(this).find('img:first').width()/2)+'px',
					itemH=$(this).find('img:first').height();
			$(this).find('img:first').css('margin-left',Mleft);
			$(this).height(itemH);
			if (scrollH<itemH+itemBor) {scrollH=itemH+itemBor}
		});
		$('#gallery .scrollable:first').height(scrollH);
		$('#gallery .scrolling:first').height(scrollH);
		$('#gallery .scrollable:first').scrollable({size:8})
	};
};
$(document).ready(function(){BuildPage();});



