$(document).ready(function(){
	$('body').addClass('hasJS');
	
	// Expander
	$('.expand-art').each(function(){
		if ($.browser.msie && $.browser.version.substr(0,1)<7) return;
		var $this = $(this);
		var $hd = $('.article-title', $this);
		var $bd = $('.article-content', $this);
		
		$hd.click(function(){
			if ($this.hasClass('opener-article')) {
				$bd.slideUp();
			} else {
				$('.expand-art .article-content').slideUp();
				$('.expand-art').removeClass('opener-article');
				$bd.slideDown();
			}
			$this.toggleClass('opener-article');
		});
		$bd.hide();
	});		
	
	
	$('#page25 #con_right a').click(function(){
		window.open(this.href);
		return false;
	});
	
});
