var ContNotice = function(){
	this.preset = function(){
		$("#content-notice").css("position","absolute");
		$("#content-notice").css("top",($(window).height()-$("#content-notice").height()-42) + "px");
		$("#content-notice").css("marginTop", $("#content-notice").height()+2 + "px");
	}
	this.initialize = function(){
		//最新記事取得
		$("#content-notice a").hover(function(){
			S.playhover();
		   $(this).fadeTo("fast", 0.5);
		},function(){
		   $(this).fadeTo("fast", 1.0);
		});	
		
		$("#content-notice").delay(10).animate( { marginTop:"0px" }, 2000  ,"easeOutQuart" );
		$(window).resize( this.onresize );
	}
	this.onresize = function( e ){
		$("#content-notice").css("position","absolute");
		$("#content-notice").css("top",($(window).height()-$("#content-notice").height()-42) + "px");
	}
	
}

