
function chkIsKind(key, value) {
    showHide('selectOrder');
    xGetElementById('search_target'+key).checked = true;
    xInnerHtml('search_target_label', value);
}



jQuery(function($){

	$(document).ready(function(){   

		$("img").hover(function(){this.src = this.src.replace("_off","_on");},
		function(){this.src = this.src.replace("_on","_off");});

		$("input").hover(function(){this.src = this.src.replace("_off","_on");},
		function(){this.src = this.src.replace("_on","_off");});

		$('#mainNav li').hover(function(){$('ul', this).slideDown(300);},
		function(){$('ul', this).slideUp(200);});

		$('#snsWrapper li a').hover(function(){
		$(this).addClass('on');}, function(){$(this).removeClass('on');});

		$('#mainNav li').hover(function(){
		$(this).find('.over').fadeIn(300);}, function(){$(this).find('.over').fadeOut(300);});	
		
		$('#topBtn').bind('click',function(event){var $anchor = $(this); 
		$('html, body').stop().animate({scrollTop: $($anchor.attr('href')).offset().top}, 800,'easeInOutExpo');
        event.preventDefault();});
		
	});

});

