(function($){
	
	/*フッター年度*/
	var myD = new Date();
	var myYear = myD.getYear()
	myYear = (myYear < 2000) ? myYear+1900 : myYear;
	var outYear = " " + myYear + " ";
	
 	$("address span").html(outYear);

	/*マウスオーバー*/
	$("a img").hover(function(){
		$(this).fadeTo(200, 0.5);
		$(this).fadeTo(200, 1);
	},function(){
		$(this).fadeTo(200, 1);
	});


})(this.jQuery);




window.log = function(){
  log.history = log.history || [];   
  log.history.push(arguments);
  if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
  }
};
(function(doc){
  var write = doc.write;
  doc.write = function(q){ 
    log('document.write(): ',arguments); 
    if (/docwriteregexwhitelist/.test(q)) write.apply(doc,arguments);  
  };
})(document);



