/* ++++++++++++++++++++++++++++++++++++ Mission Statement +++
+
+ Update:2009-08-24
+
+ http://www.ms-inc.co.jp
+ EditiorID:REN
+ EditiorID:
+
+ + use library:jquery-1.2.6.js,jquery.pngFix.js
+
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ */


/*@cc_on var doc = document; eval('var document = doc');@*/

// conflict escape
jQuery(function($) {
								

//ir news
$(function(){
	
	//on load
	$("#loadArea").load("irnews2010.html");
		
		//年度が増えるたびに追加
		$("#changeF").change(function(){
			$("#opt2010:selected").each(function(){
			$("#loadArea").load("irnews2010.html");
			});
			$("#opt2009:selected").each(function(){
			$("#loadArea").load("irnews2009.html");
			});
			$("#opt2008:selected").each(function(){
			$("#loadArea").load("irnews2008.html");
			});
			$("#opt2007:selected").each(function(){
			$("#loadArea").load("irnews2007.html");
			});
			$("#opt2006:selected").each(function(){
			$("#loadArea").load("irnews2006.html");
			});
			/*$("#opt2005:selected").each(function(){
			$("#loadArea").load("irnews2005.html");
			});
			$("#opt2004:selected").each(function(){
			$("#loadArea").load("irnews2004.html");
			});
			$("#opt2003:selected").each(function(){
			$("#loadArea").load("irnews2003.html");
			});
			$("#opt2002:selected").each(function(){
			$("#loadArea").load("irnews2002.html");
			});
			*/
			});
});

// conflict escape end
});