$(document).ready(function(){    
    var showText='Foto anzeigen';
    var hideText='Seite anzeigen';
    var is_visible = false;
	$('#imgInfo').addClass('transparent');
    $('#showBG').click(function() {
        $("#outer,#imgInfo").toggleFade({ speedIn : 2000, speedOut : 1500 });
        is_visible = !is_visible;
		/*$('#imgInfo').show();*/
        $(this).html( (!is_visible) ? showText : hideText);
  	    $(this).parent().next('.toggle').toggle('slow');
  	});
});
