/*サブウインドウ*/
function subwin(url,w){
	wo=window.open(url,"jpfa","width=566,height="+w+",left=0,top=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no");
	wo.focus();
}


/*プルダウンTable奇数、偶数を自動追加*/

$(function(){
	//奇数、偶数を自動追加
	$('ul').each(function(){
		$(this).find('li:odd').addClass('even');
		$(this).find('li:even').addClass('odd');
	});
	$('table').each(function(){
		$(this).find('tr:odd').addClass('even');
		$(this).find('tr:even').addClass('odd');
	});
});
