
$(function(){
	
	
	/*-************************************
	footer fixed
	*************************************/
	function footerFixed(){
		
		return;
		var _footer =$('#footer');
		
		//contentsHeight
		var _contentsBottom =$("#content").height()+100;//100はpadding
		//height
		var _fh = _footer.attr('offsetHeight');
		
		var _wh = $(window).height();
		
		if(_contentsBottom +_fh<_wh){
			_footer.css({position:"relative",top:(_wh-(_fh+_contentsBottom+13))+"px"});
			//_footer.css({position:"absolute",top:(_wh-_fh-15)+"px"});
		}
		
		//_footer.css("display","block");
	}
	
	function onInit(){
		footerFixed();
		//$('.iepngfix').pngFix();
	}
	//after window.onload();
   	jQuery.event.add(window, "load", onInit);
	
	//addEventListener
	$(window).bind('resize',footerFixed);
	

});
