window.onload = function() {
　var node_a = document.getElementsByTagName('a');
　for (var i in node_a) {
　　if (node_a[i].className == 'blank') {
　　　node_a[i].onclick = function() {
　　　　window.open(this.href, '', '');
　　　　return false;
　　　};
　　}
　}
　	$(".lightbox").colorbox({
　		transition: 'fade',
　		slideshow: 'true',
　		slideshowStop: 'Stop',
　		slideshowStart: 'Start',
　		slideshowSpeed: '6000'
　	});
	$(".colorbox").colorbox({slideshow: 'true', slideshowStop: 'Stop'});

};
