// ページの構築が完了したら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();
});

};

})();

