function CopyrightYear() {
   var now = new Date();
   var year = now.getFullYear();
   document.write(year);
}

$(document).ready(function(){
	
	$(function(){
	
		$('table.stripe tr:nth-child(odd)').each(function(){
				$(this).addClass('odd');
		});
	
		$('table.stripe tr:nth-child(even)').each(function(){
				$(this).addClass('even');
		});	
		
		$('dl#globalNav li').hover(function(){
				//$(this).find("ul").slideDown(50);
				$(this).find("ul").fadeIn(50);
				//$(this).find("ul").show();
				},function(){
				//$(this).find("ul").slideUp(200);
				$(this).find("ul").fadeOut(200);
				//$(this).find("ul").hide();
		});			
		//pdfへのリンクは外部リンクにして、pdfクラスを追加
		$('a[@href$=".pdf"]').click(function(){
			window.open(this.href, '_blank');
			return false;
		}).addClass('pdf');	
		$('a[@href^="http://"]').not('a[@href^="http://www.csp-frontier.jp/"]').click(function(){
			window.open(this.href, '_blank');
			return false;
		}).addClass('externalLink');	
		$('a[@href^="https://"]').not('a[@href^="https://www.csp-frontier.jp/"]').click(function(){
			window.open(this.href, '_blank');
			return false;
		}).addClass('externalLink');	
	
	});

});
