$(document).ready(function(){

$("#bild1").click(function () {
$("#text1").show();
});

$("#bild2").click(function () {
$("#text2").show();
});

$("#bild3").click(function () {
$("#text3").show();
});

});