﻿// jQueryオブジェクトのショートカット名変更
jQuery.noConflict();
var j$ = jQuery;

// ページ上部へのスムーススクロール
j$(function(){
	j$('#pagetopBtn a').click(function(){
		j$('#header').ScrollTo(1000, 'easeout');
		return false;
	});
})
// リストの区切り線、パンくずの表示
j$(function(){
	j$('#headerNav li+li').css('border-left','#bdbcbd 1px solid');
	j$('#footerNav li+li').css('border-left','#555555 1px solid');
	j$('#pankuzu li+li').before('&nbsp;&gt;&nbsp;');
})

// 外部リンクを別ウィンドウで表示
j$(function () {
	j$('a[@href^="http:"],a[@href^="https:"]').not('[@href^="http://shigoto.digiaca.com"],[@href^="https://ssl.digiaca.com"]').click(function(){
		window.open(this.href, '');
		return false;
	});
	j$('a[@href^="http:"],a[@href^="https:"]').not('[@href^="http://shigoto.digiaca.com"],[@href^="https://ssl.digiaca.com"],[img]')
		.addClass("exLink")
		.after('<img src="/images/blank_icon.gif" width="11" height="10" alt="別ウインドウで開きます。" style="margin-left:2px;vertical-align:top;" />');// 外部リンクの後ろにアイコンを追加
	j$('a[@href$=".pdf"]').addClass("exLink")
		.after('<img src="/images/pdficon_small.gif" width="17" height="17" alt="PDFドキュメント。" style="margin-left:2px;vertical-align:top;" />');// PDFドキュメントへのリンクの後ろにアイコンを追加
	j$('a[@href$=".doc"]').addClass("exLink")
		.after('<img src="/images/wordicon_small.gif" width="16" height="16" alt="Wordドキュメント。" style="margin-left:2px;vertical-align:top;" />');// Wordドキュメントへのリンクの後ろにアイコンを追加
});

