function lnbSelectCss( pagename, findid, classname='selected', check=1){ var now_location = window.location.pathname; var main_location = $('#'+findid).find('a[href="'+ pagename +'"]'); var sub_location = main_location.next(); now_location = now_location.split('/'); now_location = now_location[now_location.length -1]; var main_page = '' if(typeof sub_location.find('a[href="'+ now_location +'"]').attr('href') != 'undefined'){ main_page = pagename; } if(pagename == now_location) { $('#'+findid).find('a[href="'+ now_location +'"]').addClass(classname); } else if(main_location != '' && pagename == main_page) { if(check == 1){ $('#'+findid).find('a[href="'+ pagename +'"]').addClass(classname); } if(now_location == sub_location.find('a[href="'+ now_location +'"]').attr('href')){ sub_location.find('a[href="'+ now_location +'"]').addClass(classname); } } }