
/*
function ikinfo(bild, titel, text)
{
	titel = replaceSpaces(titel,'de');
	text = replaceSpaces(text,'de');


	$('#interaktiveKarte .bild').html('<img src="'+bild+'" />');
	$('#interaktiveKarte .titel .titel_text').html(titel);
	$('#interaktiveKarte .text').html(text);
}

	$(document).ready(function (){
		var opt = {
		left: 2,
				top: 2,
				blur: 2,
				opacity: .3,
				color: "black",
				swap: false};
	  $('.shadow').dropShadow(opt);
	});

	$(document).ready(function(){
		var url = $('#wh_suche').attr('src');
	  $('#wh_suche').autocomplete(url, { minChars:3 });
	});
}

*/
function replaceSpaces(text,mode)
{
	if (mode=='en')
	{
		text = text.replace(" ","_SP_");
		text = text.replace("\n","_BR_");
	}
	else // mode == de
	{
		text = text.replace(/_SP_/g," ");
		text = text.replace(/_BR_/g,"\n");
	}
	return text;
}



