$(document).ready(function(){
	//contour();
	//$(window).resize(contour);
	
	var num_im = (Math.floor(Math.random()*8))+1;
	$("#randomdiv"+num_im).css('display', 'block');
	
	opaque();
	$("#goTop a").click(goTop);
})

/*function contour(){
	$("#bord").width($(window).width()-40)
	$("#bord").height($(window).height()-40)
}*/
function opaque(){
	$(".fond_opaque").animate({opacity: "0.3"})

}
function goTop(){	
	$('html, body').animate({scrollTop:0}, 500);
	return false;	
}


