﻿function BuildPage() {
	$.localScroll({hash: true});
	$('#top-menu span:last').css('display','none');
	if ($('#gallery')) {
		if ($('#gallery .scrollable .items a').length>0) {
			$("#gallery .scrollable").scrollable({
				size:1,
				clickable: false
			}).find('a').overlay({
				target: '#gallery-photos',
				expose: '#111',
				onClose: function() {clearBigPhoto()}
			}).gallery({disabledClass: 'inactive'});
		}
	};
	if ($('.photo-items').length>0) {
		if ($('.photo-items .item').length>0) {
			$('.photo-items .item:even').css('float','left');
			$('.photo-items .item:odd').css('float','right');
			$('.photo-items .item').each(function(i){
				$(this).find('.scroll-block .scroll').mouseenter(function(){
					$(this).find('img:last').animate({ top:'189px' },	1500, 'linear');
					$(this).find('.text').show('1500');
					$(this).find('.more').show('1500');
				});
				$(this).find('.scroll-block .scroll').mouseleave(function(){
					$(this).find('img:last').animate({ top:'0px' }, 1500)
					$(this).find('.text').hide('1500');
					$(this).find('.more').hide('1500');
				});
			})
		}
	};
	if ($('#main-content .contents .content-item img').length>0) {
		if ($('#main-content .contents .content-item img').attr('align')=='left') {
			$('#main-content .contents .content-item img').css('margin-left','0px')
		};
		if ($('#main-content .contents .content-item img').attr('align')=='right') {
			$('#main-content .contents .content-item img').css('margin-right','0px')
		};
	};
};
function clearBigPhoto(){
	$('#img').remove();
	$('#gallery-photos').removeAttr('style');
	$('#gallery-photos').removeAttr('style');
	$('#gallery-photos').removeAttr('style');
};
$(document).ready(function(){BuildPage();});
