$(document).ready(function() {
						   
	$('#multi_box > div').hide();
	var startID = $('#footer_nav > li > #start').attr('href')
	$('#multi_box').children(startID).show();
	$('#footer_nav > li > #start').addClass('btn_selected');
	
// nav control
	$('#footer_nav > li > a').click(function(e) {
		e.preventDefault();
		$('#footer_nav > li > a').each(function() {
			$(this).removeClass('btn_selected')
			$('#multi_box > div').hide();
		});
		$(this).addClass('btn_selected');
		var mID = $(this).attr('href')
		$(mID).show();
	});


	$('#connect_nav > li').children('#txt_msg').click(function(e) {
		e.preventDefault();
		var target = $('#footer')
		var targetPOS = target.offset().top
		var scrollTime = 2000
		$('html, body').animate({scrollTop: targetPOS}, scrollTime);
		$('#auto_click').click()
	});
	
}); //doc ready end

