window.addEvent('domready', function(){
	if($('gallery'))
	{
		var nS4 = new noobSlide({
				box: $('box'),
				items: $$('#box .item'),
				size: 668,
				handles: $$('.buttons li'),
				autoPlay: true,
				interval: 10000,
				addButtons: {
					stop: $$('.buttons li h1')
				},
				onWalk: function(currentItem,currentHandle){
					this.handles.removeClass('active');
					currentHandle.addClass('active');
				}
		});
	}
	if($('contact_form'))
	{
		new FormCheck('contact_form');
	}
	
	if($('main'))
	{
		if($('middle'))
		{
			getHeight();		
		}
	}
});

function getHeight() 
{
	mainHeight = document.getElementById('main').offsetHeight;
	rightOneHeight = document.getElementById('middle').offsetHeight;
	maxHeight = Math.max(mainHeight,rightOneHeight);
	maxHeight2 = maxHeight - 28;
	
	$("main").setStyle("height", maxHeight+'px');
	$("middle").setStyle("height", maxHeight2+'px');
	
}