jQuery.noConflict();

(function($){//BEGIN jQuery
	$(function(){//BEGIN jQuery.ready()
		
		
		/*** ロールオーバー ＆ 対象画像切替 ***
		■設定
		.chimg({
			exclude: "active",
			prefix: "",
			postfix: "_o",
			targetAttr: "target",
			prefixAttr: "prefix",
			postfixAttr: "postfix",
			rolloverAttr: "rollover",
			autoActive: false,
			acceptNotLink: false
		});
		*/
		//$(".imgover").chimg();
		$(".gNav")
			.pageInit({
				".siteIndex": "li:eq(0)",
				".philosophy": "li:eq(1)",
				".service": "li:eq(2)",
				".company": "li:eq(3)",
				".recruit": "li:eq(4)"
			}, function(){
				$(this).addClass("active");
			})
			.chimg({autoActive:true});
		
		/*toPageTop*/
		$(".toPageTop a")
			.click(function(){
				$("html,body").animate({
					scrollTop: 0
						}, 500);
					return false;
			});
			
		/* mailto スパム対策 */
		$(".mailLink")
			.each(function() {
				var $this = $(this);
				var addr = $this.attr("rel");
				if(addr) {
					$this.attr("href", "mailto:"+addr+"@pleiades-net.co.jp");
				};
			});
		
		/*other*/
		if($.browser.msie)
			$("hr").replaceWith('<div class="hr"></div>')
		
		
	});//END jQuery.ready()
})(jQuery);//END jQuery




