/**
 * Zajisti zmenseni obrazku, protoze WebKit blbne
 */

$(document).ready( function() {
	$("p.aktualita img").each(function() {
		var me = $(this);
		
		me.height((me.height() * 0.4) + "px");
		/*me.width(me.width() * 0.4);*/		
	});
});