<!--//
function loadImage() { 
	var rollover = new Array();
	for (var i=0; i < 15 ; i++) {
		rollover[i] = new Image();
	}
}

function changeImg(iName,img){
	document.images[iName].src=img;
}

function _JumpURLnewWin(url,sizeX,sizeY) 
{
  if (url != ''){
    win=window.open(url,"a","scrollbars=1,resizable=yes,width=" + sizeX + ",height=" + sizeY);
  }
}
function _TargetWinOpen(url,sizeX,sizeY,target) 
{
  if (url != ''){
    win=window.open(url,target,"scrollbars=1,resizable=yes,width=" + sizeX + ",height=" + sizeY);
  }
}
function SelectJumpURL(obj) 
{
  url = obj.options[obj.selectedIndex].value;
  if (url != '')
  {
    window.location = url;
  }
}
function mOvr(src,clrOver){ 
	if (!src.contains(event.fromElement)){
		src.style.cursor = 'hand'; 
		src.bgColor = clrOver; 
	} 
} 
function mOut(src,clrIn){ 
	if (!src.contains(event.toElement)){ 
		src.style.cursor = 'default'; 
		src.bgColor = clrIn; 
	} 
}


function wopen1(){
	wo1=window.open("/menu/movie.html","new", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=505,height=291");
}


function invisibleLinkLine() {
var blur = function () { this.blur() };
for (var i = 0; i < document.links.length; i++)
document.links[i].onfocus = blur;
}

//-->

<!--//
var yomotsuRollover = {
	
	preLoad : {},
	main : function() {
		var img = document.images, i, preLoadImg;
		
		for (i = 0; i <img.length; i++) {
			if ((img[i].src.match(/.*_rll\./))||(img[i].style.filter)){
				
				var preLoadImg = new Image;
				preLoadImg.src = img[i].src.replace('_rll.', '_on.');
				yomotsuRollover.preLoad[img[i].src] = preLoadImg.src;

				img[i].onmouseover = yomotsuRollover.over;
				img[i].onmouseout  = yomotsuRollover.out;
			}
		}
	},
	
	over : function() {
		var imgSrc, preLoadImgSrc;
		if((this.style.filter)&&(this.style.filter.match(/_rll\.png/))){//(IE5.5-6 && png)
			imgSrc = (this.style.filter.match(/src=.*\)/)+"").slice(5,-2);
			preLoadImgSrc = yomotsuRollover.preLoad[imgSrc];
			this.style.filter = this.style.filter.replace(imgSrc, preLoadImgSrc);
		}
		else{
			this.src = yomotsuRollover.preLoad[this.src];
		}
	},

	out : function(){
		if((this.style.filter)&&(this.style.filter.match(/_on\.png/))){//(IE5.5-6 && png)
			this.style.filter = this.style.filter.replace('_on.png', '_rll.png');
		}
		else{
			this.src = this.src.replace('_on.', '_rll.');
		}
	},

	addEvent : function(){
		try {
			window.addEventListener('load', this.main, false);
		} catch (e) {
			window.attachEvent('onload', this.main);
		}
	}
}

yomotsuRollover.addEvent();

//-->

