//function arsludica_onload(){
$(document).ready(function() {

//refresh logo
	
	$("#logo img").each(function() {
		this.src=this.src + "?nocache=" + new Date().getTime();
	});

//immagini nei post
	var max_width=624;
	$("div.post img").each(function() {
		//Get the width of the image
		var width = $(this).width();
		var height = $(this).height();
		//Max-width substitution (works for all browsers)
		if (width > max_width) {
			$(this).css("width", max_width + "px");
			var scaled_height=Math.round(height*max_width/width);
			$(this).css("height", scaled_height + "px");
		}
	});

//};
});
