$( document).ready(
	function(){
		$( '#newslist').bind(
			'click',
			function(){
				$( this).attr(
					'href',
					(
						( $( '#tab1').css( 'display') == 'block') ? 'news/index.html':
						( $( '#tab2').css( 'display') == 'block') ? 'concert/index.html': ''
					)
				);
			}
		);
	}
);

