document.observe('dom:loaded', function() {
  image_size_fix();
});

function image_size_fix() {
	var max_width = 570;
  
	$$('.post img').each( function(el) {
		if (el.getWidth() > max_width) {
		  el.width = max_width;
		}
	});
}

function open_audioplayer(href) {
  open_popup(href, 'audioplayer', '295', '270');
}

function open_popup(href, name, width, height) {
	var win = window.open(href, name, "width="+ width +",height="+ height +",directories=no,location=no,menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no");
	win.focus();
}