$(document).ready(function() {
	$('img').hover(function() {
		$('#alttext').html($(this).attr("alt"));
	}, function() {
		$('#alttext').html("");
	});
	
	
	$.ajax({
  url: "johan.php",
  cache: false,
  success: function(html){
    $("#status").append(html);
  }
});
	
	
	
	
	
	
});
