/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

jQuery.noConflict();

(function($){
	$(function(){
		$("div#news div.article:nth-child(even)").addClass("article_even");

		$("div#main form table tr td:first-child").addClass("first_col");
		$("div#main form table tr td:nth-child(2)").addClass("second_col");

		$("p#agenda_principle").corner();

		// 外部リンク
		$('a[href^="http"]').not('[href*="www.kiyohito.jp"]').attr('target', '_blank');
	});
})(jQuery);



