$(document).ready(function() {

	// index.html　マウスオーバー時用処理
	// 検査機器・測定器 LSI 変換ボード・ユニット・ニュースリリース一覧
	$('#cList > li, #nListBtn').fadeTo(1, 1).hover(
		function(){
			$(this).fadeTo(80, 0.5);
		},
		function() {
			$(this).fadeTo(80, 1);
		}
	);
	
	// 透過PNG for IE6
	$(".new_cover").pngfix();

});

//pop up用
$(document).ready(function(){
	//pop up Window
	$('.popup').click(function(){
			$(this).blur();
			window.open(this.href, '',this.attrib);
		return false;
	});
	//フォーカス時フォーカス枠を表示しない
	$('.popup').focus(function(){
			$(this).blur();
	});


});
