function change_img(php, galerie_id, img_id) {
	/* $("#div_img_large").fadeOut( 200, function(){ */
	/* 	$('#div_img_large').html('<div class=\'block\' style=\'position:relative; height:200px; margin:0 auto;\'>LADE BILD</div>'); */
		/* document.getElementById('the_image').innerHTML = "laden.gif"; */
		
		$.ajax({
			url: php,
			type: "POST",
			data: "ajax=../../../../&galerie_id=" + galerie_id + "&img_id=" + img_id,
			success: function(response) {
			  	/* alert (response); */
			  	$('#div_img_large').html(response);
			},
			complete: function(){
				$('#div_img_large').fadeIn(200);
			}
		});
	/* }); */
}
