/**
 * ±è¹«°Ç || Elkha (elkha1914@hotmail.com)
 * http://elkha.kr
 * 2009.04.11
 **/

(function($){
	$(document).ready(function () {
		
		// #header .lang
		$('#header .lang ul').hover(function(){
			//$('#header .lang ul').addClass('open');
		},function(){
			$('#header .lang ul').removeClass('open');
		}).find('.em button').click(function(){
			$('#header .lang ul').toggleClass('open');
		});
		$('#header .lang li button').hover(function(){
			$(this).addClass('hover');
		},function(){
			$(this).removeClass('hover');
		});
		
		// #widget .loginLayer
		$('#widget .loginLayer button.openID').click(function(){
			$(this).parent('.imgLoginOID').toggleClass('imgLoginOID_On');
			$('#widget .loginLayer form').toggleClass('show');
		}); // Open ID º¸ÀÌ±â, ¼û±â±â
		
		// #widget .lnb
		$('#widget .lnb .expand_Y .more').addClass('moreOn');
		$('#widget .lnb .more button').click(function(){
			$(this).parent('.more')
			.toggleClass('moreOn')
			.parent('.li_2').children('.ol_3').slideToggle('fast');
		}); // À§Á¬¿¡¼­ 3Â÷¸Þ´º º¸ÀÌ±â, ¼û±â±â
		
		// #footer .goto
		//$('#footer .goto').html('<button type="button">Go to top</button>');
		$('#footer .goto *').click(function(){
			$('html, body').animate({ scrollTop: 0 },'fast');
			return false;
		});
		
	});
})(jQuery);

