/**
 * sorfunctions.js
 * Students of Round Official Web Site
 * Author:   Conure
 * Modified: 09 Apr. 2010
 */
$(function(){
	//ページのIDを取得
	var documentID = $("body").attr("id");
	//alert(documentID);
	//初期化
	$('#nav li .subnav').hide(); //サブメニュー非表示
	$('#nav li a.navmenu').addClass('otherDir')
	if(documentID == 'information' || documentID == 'spec' || 
		documentID == 'support' || documentID == 'otherItems'){
		$('#nav li#gotoinformations a.navmenu').removeClass('otherDir');
		$('#nav li#gotoinformations a.navmenu').addClass('currentDir');
		$('#nav li#gotoinformations .subnav').show();
	} else if(documentID == 'story' || documentID == 'system01' || 
	          documentID == 'system02' || documentID == 'system03' || 
	          documentID == 'system04' || documentID == 'system05' || 
	          documentID == 'character' || documentID == 'monster' || 
	          documentID == 'sound') {
		$('#nav li#gotogame a.navmenu').removeClass('otherDir');
		$('#nav li#gotogame a.navmenu').addClass('currentDir');
		$('#nav li#gotogame .subnav').show();
	} else if(documentID == 'shoppingGuide') {
		$('#nav li#gotoshoppingguide a.navmenu').removeClass('otherDir');
		$('#nav li#gotoshoppingguide a.navmenu').addClass('currentDir');
	} else if(documentID == 'visualbook' || documentID == 'soundtrack') {
		$('#nav li#gotootheritems a.navmenu').removeClass('otherDir');
		$('#nav li#gotootheritems a.navmenu').addClass('currentDir');
		$('#nav li#gotootheritems .subnav').show();
	} else if(documentID == 'screenshots') {
		$('#nav li#gotoscreenshots a.navmenu').removeClass('otherDir');
		$('#nav li#gotoscreenshots a.navmenu').addClass('currentDir');
	} else if(documentID == 'review' || documentID == 'review-site') {
		$('#nav li#gotoreview a.navmenu').removeClass('otherDir');
		$('#nav li#gotoreview a.navmenu').addClass('currentDir');
		$('#nav li#gotoreview .subnav').show();
	} else if(documentID == 'download' || documentID == 'trialDownload' || documentID == 'spDownload') {
		$('#nav li#gotodownloads a.navmenu').removeClass('otherDir');
		$('#nav li#gotodownloads a.navmenu').addClass('currentDir');
		$('#nav li#gotodownloads .subnav').show();
	} else {
	};
	//サブメニュー表示・非表示
	$('#nav li a.otherDir').click(function(){
		var target = $(this).next();
		var crrnt = $(this).parent().attr('id');
		if(crrnt == 'gotoshoppingguide' || crrnt == 'gotoscreenshots') {
		} else { //購入ガイド・スクリーンショット以外
			if(target.is(':hidden')) {
				$(target).slideDown('slow');
			} else if(target.is(':visible')) {
				$(target).slideUp('slow');
			};
			return false;
		};
	});
	//
	//別ウィンドウで開く
	$('a.blank').click(function(){
		window.open(this.href, "_blank");
		return false;
	});
});
