
window.onload=function(){ 
 recentyear();
}

function recentyear(){
	var nowdate = new Date();
	var year = nowdate.getFullYear();
	str = "Copyright (C) 2006-" + year + " IBI Inc. All Rights Reserved.";
 	$('.txt2').text(str);
}
