// JavaScript Document

function setOrdinallyaction()
{

	$$("a").each(function(node){
		Event.observe(node, 'focus', function(){this.blur();}, false);
	 });

	$$(".detailBt").each(function (detailbt){
			
		Event.observe(detailbt, 'mouseover', function(){
			this.style.backgroundcolor = "#1F72FF";
			this.style.color = "#FFFFFF";
			this.style.backgroundImage = "url(/image/btback2.gif)";
			},false);
			
		Event.observe(detailbt, 'mouseout', function(){
			this.style.backgroundcolor = "#1FAAFF";
			this.style.color = "#333333";
			this.style.backgroundImage = "url(/image/btback1.gif)";
			},false);
	 });

}

preloadImages = [];
function preloadImage(url){
	var p = preloadImages;
	var l = p.length;
	p[l] = new Image();
	p[l].src = url;
}


function pagemove(nextURL){
	window.location.href = "http://lrcorp.jp" + nextURL;
}

Event.observe(window, 'load', setOrdinallyaction, false);


