

$(document).ready(function(){

	Shadowbox.init({
	    language:   "de",
	    players:    ["img", "html", "iframe"]
	});


	// Tabs
	$("ul#tabs").tabs("div#panes > div");


	//fix PNG-BUG IE<=6
	$("img").not("#submit_plz").not("#submit_textsuche").ifixpng();
	$("#content_head").ifixpng();
	$("#content").ifixpng();
	$("#content_start").ifixpng();
	$("#content_footer").ifixpng()

	//MAP einbinden
	if($("#myMap").length>0) {

		$("#myMap").html('<img style="float:left;" src="../../style/loading.gif" alt="" />');

		LazyApiLoader.Load(GetECMap);

	}

	// Tooltip
	$('.show_tooltip').tooltip({
		showURL: false
	});

	// PLZ Suchen => Suche starten
	$("#submit_plz").click(function(){

		// Value von select-Box
		var plz_value =  $("#plz_select").val();

		// LINK
		window.location.href = liveurl + "?plz_senden=1&plz=" + plz_value + "#plz_suche";
	});

	// Textsuche => Suche starten
	$("#submit_textsuche").click(function(){

		// Value von select-Box
		var textsuche_value =  $("#textsuche").val();

		// LINK
		window.location.href = liveurl + "?volltext_suche=1&textsuche=" + textsuche_value + "#text_suche";

	});


});
