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

(function($){

$(document).ready(function(){

	$("#mainMenu li.off").hover(

		function(){
		$(this).removeClass('off');
        $(this).addClass('on');},

		function(){
		$(this).removeClass('on');
        $(this).addClass('off');}
	);

});

})(jQuery);
