// window out
function newLocation($go){

	$('#main_content').css('backgroundColor', 'transparent');
	$('.slide img').fadeOut(400);
	$('.slide p').fadeOut(400);
	$('#main_comment').hide('slide', { direction: 'up' }, 600);

	setTimeout(function() {
	$('#menu_form').hide('slide', { direction: 'up' }, 300);
	$('#nav div').hide('slide', { direction: 'left' }, 300);
	}, 300);

	setTimeout(function() {
	$('#main_content').animate({'borderTopColor': '#666', 'borderRightColor': '#666', 'borderBottomColor': '#666', 'borderLeftColor': '#666'}, 600);
	}, 600);

	setTimeout(function() {
	$('#menu_page ul').hide('slide', { direction: 'right' }, 200);
	$('#right_col').hide('slide', { direction: 'left' }, 600);
	}, 600);

// 	setTimeout(function() {
// 	$('#floating_img img').fadeOut(300);
// 	}, 900);
	
	setTimeout(function() {
		window.location=$go;
	}, 1200);
}

function newLocation2($go){

	$('.slide img').fadeOut(400);
	$('.slide p').fadeOut(400);
	$('#main_comment div').fadeOut(400);

	setTimeout(function() {
// 	$('#nav div').hide('slide', { direction: 'down' }, 400);
	$('#nav div').animate({'marginTop': '+=362px'}, 600);
//	$('#floating_img img').fadeOut(300);
	}, 100);

	setTimeout(function() {
		window.location=$go
	}, 700);
}

