var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-21037295-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
  
$(function(){

	/*var h = $("div#article").css('height');*/
	var h = $("div#article").height();
	var t = $("div#sidebar").height();
	/*$("div#article").animate({ "height": "630px" });*/
	
	if(h<450 && t>h) {
		$("#agrandir").hide();
		$("div#article").animate({ "height": t+20 });
	}
	if(h<450 && t<h) {
		$("#agrandir").hide();
		$("div#article").animate({ "height": h+20 });
	}
	
	if(t>450) {
		$("div#article").animate({ "height": t });
	}

	
	$("div#article").css("height","450px");
	$("#agrandir").click(function () { 
	  $("div#article").animate({ "height": h });
	  $("#agrandir").hide();
	});

});
