/*
 * File name: megamenu_setting.js  Shift_JIS-[CR+LF]
 * Version: 1.0 - 2011/02/05
 * Written by TEC INFORMATION SYSTEMS CORPORATION
 * 
 * [概要]
 * megamenu設定用ファイル（class名の指定）
 * 
 * [Usage]
 *   <script type="text/javascript" src="megamenu_setting.js"></script>
 *   </head>
 */
jQuery(function(){
	var SelfLocation = window.location.href.split('?');
	switch (SelfLocation[1]) {
		case "justify_right":
			jQuery(".megamenu").megamenu({ 'justify':'right' });
			break;
		case "justify_left":
		default:
			jQuery(".megamenu").megamenu();
	}
});
