/* Décoraton.js
/* Routines JavaScript pour la décoration du theme bastnic */
$(document).ready(function() {
	$("#content img").each(function(){
		$(this).shadowise();
	});
	$("#com dl dt").each(function(){
		//Posistion aléatoire des commentaires
		h = (Math.random()*2)-1;
		l = (Math.random()*2)+2;
		marginTop= h + "em";
		marginLeft= l + "em";
		$(this).css("margin-top", marginTop);
		$(this).css("margin-left", marginLeft);
		$(this).next().css("margin-left", marginLeft);
	});
	
});
