/*!
 * home page: 
 * version 1.0.0 (2011/05/06)
 * Requires jQuery v1.5.2 or later
 * Copyright © 2011 Rookie Inc.
 * http://www.rookie-inc.com/
 */
/**********************************************************
*
*  ★★ jQuery-url-parser 必須 ★★
*		https://github.com/allmarkedup/jQuery-URL-Parser
*       [[LOAD_ClientJS? &js_file=`jQuery-url-parser/jquery.url.js`]]
*
**********************************************************/

/********************************/
/* 現在位置のメニューにIDを付加 */
/********************************/

$(function(){
	// alert('START');  
	var myURL = jQuery.url(); 
	var mypage = myURL.attr('file');  
	var mypath = myURL.attr('path');  
	var tmp;
	//alert(mypage);
	//alert(myURL.attr('path'));
	if(mypath != '/') {
		mypath = mypath.replace(/^\//,"");
	}
	//alert(mypath);
	$('nav li a').each(function(){
		var myhref = $(this).attr('href');
		//alert(myhref);
		if ( (myhref == mypath) || (myhref == '') ) {
			$(this).addClass('current');
			//$(this).attr('id', 'here');
		} else {
			$(this).removeClass('current');
			//$(this).attr('id', '');
		}
	});
})

