// JavaScript Document



$(function() {
		$('#otonaTitle').click(function() {
			$('#topLeftNav').css('opacity','0');
			$('html, body').animate({scrollTop:0},1000);
			$('html, body').animate(
				{scrollLeft:0},
				{
				duration:3500,
				easing:'swing',
				complete: function() {
					$('#topLeftNav').fadeTo(2000,1);
					}
				}
			);
			return false;
		});
	});
	
$(function() {	
	$('#kodomoTitle').click(function() {
			$('#topRightNav').css('opacity','0');
			$('html, body').animate({scrollTop:0},1000);
			$('html, body').animate(
					{scrollLeft:2230},
					{
					duration:3500,
					easing:'swing',
					complete: function() {
						$('#topRightNav').fadeTo(2000,1);
					}
					}
			);
			return false;
		});
});


