function resizeImage(){
	$("#image").height($(window).height() - 60);
	$("#image").css({position: "fixed"})
			
	if($("#image img").width() <= $("#image").width() || $("#image img").width() >= $("#image").width()){
		$("#image img") 
		   .width($("#image").width()) 
		   //.height($(window).width() * .56); 
		   .height($("#image").width() * .56);	
	}
	
	if($("#image img").height() <= $("#image").height()){	
		$("#image img")
			.height($("#image").height())
			//.width($(window).height() * 1.77);
			.width($("#image").height() * 1.77);	
	}	
				
	$("#image img").center();

	
/* 	$("#page").height($(window).height()) */
}