$(document).ready(function() 
{
	$('#more a').click(function(){
		$('#body').animate(
			{
				top: '0%',
				marginTop: '60px'
			}, 
			200,
			function(){
				$('#more')
				.addClass('expanded');
			}
		);
		
		var h = $('#container #main').height();
		var sideH = $('#container #sidebar').height();
		if ( sideH > h )
		{
			h = sideH;
		};
		
		$('#container').animate(
			{
				height: h + 'px'
			}, 
			200
		);
	});
	
	$('xx#contactPage').click(function(){
		$('#contactForm')
		.animate({
			height: '160px'
		}, 200);
		return false;
	});
	
	$('#contactForm .close').click(function(){
		$('#contactForm')
		.animate({
			height: '0px'
		}, 200, function(){
			$('#contactForm').hide();
		});
		return false;
	});
	
	$('#contactForm form').submit(function(){
		var $form = $(this);
		var data = $form.serialize();
		var action = $form.attr('action');
		
		$.ajax({
			type: 'POST',
			url: action,
			data: data + '&ajax=true',
			dataType: 'html',
			success: function(html){
				$('#contactForm').html(html);
			}
		});
		
		return false;
	});
});
