$(document).ready(function(){
	
	var ie6 = $.browser.msie && /MSIE 6.0/.test(navigator.userAgent);
	if(!ie6)
		$(".site").css("background-color","#F1F4F8");
	
	$(".link_bold_blue_small").click(function() {
		var description = $(this).parent().parent().find("div.description:first");
		var img = $(this).parent().find("img");
		if($(description).css("display") == "none")
		{
			$(description).slideDown("fast");
			$(img).attr("src","/static/images/button_openv.gif");
		}
		else {
			$(description).slideUp("fast");
			$(img).attr("src","/static/images/button_closev.gif");
		}
	});
	
	// pour overview hack IE6
	if (typeof document.body.style.maxHeight == "undefined") {
		$(".bloc_start").hide(1);
		$(".bloc_start").show(1,function(){
			$(this).css("display","inline");
		});
	}
	
});