$(function(){
		   
	var winWidth = 480;
	var winHeight;
	
	chgWinHeight();
	window.onresize = chgWinHeight;
	
	function chgWinHeight(){
		winHeight = (window.innerHeight || document.documentElement.clientHeight) * 0.7;
		$('#content ul li a').each(function(i){
			var $href = $(this).attr('href');
			$href.match(/article\/([^/.]+)\.html/);
			if(RegExp.$1 != ""){
				var $class = RegExp.$1;
				$(this).attr('href', $href + '?TB_iframe=true&width='+ winWidth +'&height='+ winHeight);
				$(this).addClass($class);
				$(this).addClass('thickbox');
			}
		});
	}
	
	thinkBoxInit();
	
	document.location.search.match(/[?&]article=([^&]+)/);
	$article = RegExp.$1;
	$("a." + $article).triggerHandler('click');
	
});



