/* config */
$(function() {
	// add class
	$('li:last-child').addClass('last');	//全てのli要素の最後に
	$('dd:last-child').addClass('last');	//全てのdd要素の最後に
	
	$('table.forumsTable tr > *:first-child').addClass('first');	//のtd要素の最初に
	$("table.forumsTable tr:even").addClass("even"); //　偶数行
	
	//$("a[href$='.pdf']").addClass("pdf_link"); //icon_pdf用
	//for H3
	//$('#contentRight h3').wrapInner('<strong></strong>');

});

// top用画像にhoverしたらボタンもhover
$(function() {
	$('.wrap a img').hover(function(){
				$(this).parents(".wrap").find("a").css('background-position','top');
		},
		function(){
				$(this).parents(".wrap").find("a").css('background-position','bottom');
		}
		);
	});


// popup
$(function() {
	$('#popUp a').click(function(){
		window.open(this.href, '', 'width=820,height=500,resizable=yes,scrollbars=yes');
		return false;
	});
});


