		$(document).ready(function(){
			redim();
			$("a[href^=http://]").click(function(){
				window.open(this.href);
				return false;
			});
		})
		$(window).resize(function(){
			redim();
		});
		function redim(){
			w=$(window).height();
			m=$("#menu").height();
			c=$("#contenu").height();
			if(c>m)
			{
				b=c+$("#header").height()+$("#footer").height();
			}
			else
			{
				b=m+$("#header").height()+$("#footer").height();
			}
			if(w>b)
			{
				$("#cont").height(w-$("#header").height()-$("#footer").height()-70);
			}
		}