(function($){
	$(document).ready(function(){
		$(".presentation img").each(function() {
			//alert($(this).width());
			$(this).next().css("left",$(this).width()+10);
			$(this).next().css("margin-top",$(this).next().height()/(-2));
			$(this).css("margin-top",$(this).height()/(-2));
		});
	});
})(jQuery);

