// ページの構築が完了したらloadを呼び出す
(function(){

	//ユーザーエージェント
	var userAgent = navigator.userAgent.toLowerCase();
	
	if(document.addEventListener){ // opera,safari,mozilla向け
		document.addEventListener("DOMContentLoaded", load, false);
	} else if(/msie/.test(userAgent)){ // IE向け
		try {
			document.documentElement.doScroll("left");
		} catch(error){
			setTimeout(arguments.callee, 0);
			return;
		}
		load();
	} else { // その他
		window.onload = load;
	}
	
	
	// DOM構築完了時の処理

function load(){

$('#thumbnails ul li').each(function(){
		var combo_src=$(this).children('img:eq(1)').attr('src');
		//var combo_alt='<span style="font-size:116%;">'
		//combo_alt+=$('#intext').text();
		//combo_alt+='</span><br />'
		//combo_alt+=$(this).children('img:eq(1)').attr('alt');
		
		var combo_alt=$(this).children('img:eq(1)').attr('alt');
		
		$(this).children('img:first').wrap('<a>');
		$(this).children('a:first').attr({'href':combo_src,'title':combo_alt,'rel':'photo'});
		
		$(this).children('img:first').remove();
		
});





$('#thumbnails_taiken ul .taiken_li').each(function(i){
		var combo_src=$(this).children('img:eq(1)').attr('src');
		//var combo_alt='<span style="font-size:116%;">'
		//combo_alt+=$('#intext').text();
		//combo_alt+='</span><br />'
		//combo_alt+=$(this).children('img:eq(1)').attr('alt');
		//var combo_alt=new Array();
		var combo_alt=$(this).children('.tour_studet_text').html();
		
		$(this).children('img:first').wrap('<a>');
		$(this).children('a:first').attr({'href':combo_src,'rel':'photo','name':combo_alt});
		
		$(this).children('img:first').remove();
		$(this).children('.tour_studet_text').remove();
		
		$(this).fadeIn(500);
		
		// setup lightbox_taiken (colorbox).
		$(this).find('a').colorbox(
				{
					slideshow: false,
					slideshowAuto: false,
					slideshowStart: '\u30B9\u30E9\u30A4\u30C9\u30B7\u30E7\u30FC\u3092\u898B\u308B',
					slideshowStop: '\u30B9\u30E9\u30A4\u30C9\u30B7\u30E7\u30FC\u3092\u3084\u3081\u308B',
					opacity: 0.7
				},
				function() {
					// append extra text.
					
					
					$('#cboxTitle').empty();
					
					$('#cboxTitle').append($(this).attr('name'));
					
					// hide position text.
					$('#cboxCurrent').hide();
				}
			);
			
});


$('#thumbnails_taiken ul .taiken_li2').each(function(i){
		var combo_src=$(this).children('img:eq(1)').attr('src');
		//var combo_alt='<span style="font-size:116%;">'
		//combo_alt+=$('#intext').text();
		//combo_alt+='</span><br />'
		//combo_alt+=$(this).children('img:eq(1)').attr('alt');
		//var combo_alt=new Array();
		var combo_alt=$(this).children('.tour_studet_text').html();
		
		$(this).children('img:first').wrap('<a>');
		$(this).children('a:first').attr({'href':combo_src,'rel':'photo','name':combo_alt});
		
		$(this).children('img:first').remove();
		$(this).children('.tour_studet_text').remove();
		
		$(this).fadeIn(500);
		
		// setup lightbox_taiken (colorbox).
		$(this).find('a').colorbox(
				{
					slideshow: false,
					slideshowAuto: false,
					slideshowStart: '\u30B9\u30E9\u30A4\u30C9\u30B7\u30E7\u30FC\u3092\u898B\u308B',
					slideshowStop: '\u30B9\u30E9\u30A4\u30C9\u30B7\u30E7\u30FC\u3092\u3084\u3081\u308B',
					opacity: 0.7
				},
				function() {
					// append extra text.
					
					
					$('#cboxTitle').empty();
					
					$('#cboxTitle').append($(this).attr('name'));
					
					// hide position text.
					$('#cboxCurrent').hide();
				}
			);
			
});




};

})();

