// JavaScript Document

function initRollOvers(){
	var rootPath = "http://www.jpbs.co.jp/";
	var preLoadImg = new Array();
	preLoadImg[0] = new Image();
	preLoadImg[1] =new Image();
	preLoadImg[0].src = rootPath+'images/common/blue-triangle_marker.gif';
	preLoadImg[1].src = rootPath+'images/common/blue-triangle_marker_on.gif';

	
	$(".subNavi2 a").each(function(){
		$(this).hover(
			function() { this.style.backgroundImage = "url("+preLoadImg[1].src+")"; },
			function() { this.style.backgroundImage = "url("+preLoadImg[0].src+")"; }
		);
	});
	
	$("#local-navi a").each(function(){
		$(this).hover(
			function() { this.style.backgroundImage = "url("+preLoadImg[1].src+")"; },
			function() { this.style.backgroundImage = "url("+preLoadImg[0].src+")"; }
		);
	});
	
	$(".on-menu a").each(function(){
		$(this).unbind("mouseenter").unbind("mouseleave");
	});
}

$(function(){
	initRollOvers();
});
