/**
 * @author reikop
 */
$(document).ready(function(){
	/**********  메뉴  **********/
	$('.gnb-dpt1 > li').bind('mouseenter',function(){
			$(this).each(function(){
				$('.gnb-dpt1 > li > ul').hide();
				$(this).children('ul').fadeIn();
			});
	});
	$('#goLink01').change(function(){
		$('#linkTarget').attr('href',$(this).val());
	});
});
function visibleTab(target){
	if(target == "noti"){
		$("#Notice").hide();
		$("#Stat").show();
	}
	else{
		$("#Notice").show();
		$("#Stat").hide();
	}
}
function visibleTab2(target){
	if (target == "pro") {
		$("#Product").show();
		$("#export").hide();
		$("#Communi").hide();
	} else if(target == "ex"){
		$("#Product").hide();
		$("#export").show();
		$("#Communi").hide();
		
	} else if(target == "comm"){
		$("#Product").hide();
		$("#export").hide();
		$("#Communi").show();
		
	}
}
function searchSubmit()
{
	//$("#search_input").val(encodeURI($("#search_input").val()));
}

