// JavaScript Document
$(document).ready(function() {
	$('#LEGAL a.aExtraInfo').click(function () {
		$('#divExtraInfo').fadeIn();
		$('#divServiceArea').fadeOut();
	});
	$('#LEGAL a.aServiceArea').click(function () {
		$('#divServiceArea').fadeIn();
		$('#divExtraInfo').fadeOut();

	});

	$('.aLinkCloseSection').click(function () {
		$(this).scrollTop();
		$(this).parent().fadeOut('slow');	
	});
	$('.aLinkCloseSection').mouseover(function () {
		$(this).animate({'width':'+=150px'}, 500, 'swing');
	});
	$('.aLinkCloseSection').mouseout(function () {
		$(this).animate({'width':'-=150px'}, 500, 'swing');
	});
});
