$(document).ready( 
	function(){
	   initPage();
    }
);
/**
 *init page with full height
 */
function initPage(){
	if($("body").height()>($("div.container").height())){
		$("div.container").css("padding-bottom",$("div.footer").outerHeight());
		$("div.container").height($("body").height()-$("div.footer").outerHeight());
	}
}
