﻿window.onload = function(){
//	var i, l;

// contents table内のulの高さをそろえる
/*
	var contentsTable = document.getElementById('index_contentsTable');
	var uls = contentsTable.getElementsByTagName('ul');
	var maxHeight = 0, heights;

	for (i = 0, l = uls.length; i < l; i++) {
		if (maxHeight < uls[i].clientHeight) {
			maxHeight = uls[i].clientHeight;
		}
	}

	for (i = 0, l = uls.length; i < l; i++) {
		uls[i].setAttribute('style','height:' +  maxHeight + 'px;');
	}
*/

// 「動画を見る」のポップアップの設定
/*
	var movie = document.getElementById('index_movie');
	var anchors = movie.getElementsByTagName('a');
	
	for (i = 0, l = anchors.length; i < l; i++) {
		anchors[i].onclick = function(){
			window.open('movie/jp/jp.html','','width=848,height=770,location=yes');
			return false;
		}
	}
*/
	var movie = document.getElementById('index_movie_link');
	movie.onclick = function(){
		window.open('movie/index.html','','width=848,height=770,location=yes,resizable=yes');
		return false;
	}
}

$(document).ready(function() {
	$("#link_companylist").fancybox({
		'padding':	0,
		'hideOnContentClick':	false,
		'titleShow'	:false,
		'overlayOpacity'	:0
	});
});
