$(document).ready(function(){
	$.fsize();
	
	//var domain = location.href.match(/^http(s)?(:\/\/[a-zA-Z0-9.]+)\//i)[0];
	//$('a[href^=http]').not('[href*="' + domain + '"]').attr('target', '_blank');
	//$('a[href^=http]').not('[href*="' + domain + '"], .noIcon').addClass('linkEX');
	//$("a[href$='.pdf']").not('.noIcon').addClass('linkPDF');
	//$("a[href^='mailto:']").not('.noIcon').after("<span class='linkMail'>&nbsp;</span>");
	
	var gnaviClass = ['global1', 'global2', 'global3', 'global4', 'global5']
	for (var gC = 0; gC < gnaviClass.length; gC++) {
		if ($('body').hasClass(gnaviClass[gC])) {
			$('#gnavi li:eq(' + gC + ') img').attr('src', $('#gnavi li:eq(' + gC + ') img').attr('src').replace('.gif', '_on.gif')).addClass('current');
		}
	}
	
	$('#gnavi img').not('.current').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('.gif', '_on.gif'));
	}, function(){
		$(this).attr('src', $(this).attr('src').replace('_on.gif', '.gif'));
	});
	
	
	$('#btnEn img , #menuArea li img , #subMenu li img ').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('.gif', '_on.gif'));
	}, function(){
		$(this).attr('src', $(this).attr('src').replace('_on.gif', '.gif'));
	});
	
	//pgTop
	$('.pgTop a').click(function(){
		$('html,body').animate({
			scrollTop: 0
		}, 'normal', 'swing');
		return false;
	});
});

