	$(document).ready(function()
	{
		if($('#kartncheck').attr("checked")){
			$("#visbilitycont").hide();
			$("#map_canvas").show();
			$('#bestse22').fadeIn(1000);	
			
		}
		else{
			$("#map_canvas").hide();
			$('#bestse22').hide();
		}
	})
	
	function lookup(inputString) {
		if(inputString.length == 0) {
			$('#suggestions').hide();
		} else {
			$.post("http://www.hoxami.com/hs/func_suche.php", {queryString: ""+inputString+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
				}
			});
		}
	} 	
	function fill(thisValue) {
		$('#inputString').val(thisValue);
			
	}
	function loadPage(hotAdr){
		window.location = hotAdr;
	}
	function hideMe(){
		setTimeout("$('#suggestions').hide();", 250);
	}
	function fadeBestseller(){
		$('#bestse22').fadeIn(1000);	
	}
	function fadeoutBestseller(){
		$('#bestse22').fadeOut(1000);	
	}
	function karte(){
		if($('#kartncheck').attr("checked")){
			$("#map_canvas").slideToggle("slow", function() { initialize();});	
			$("#visbilitycont").slideUp('slow');
			$('#bestse22').fadeIn(1000);
		}
		else{
			$("#map_canvas").slideToggle("slow");	
			$('#bestse22').hide();
			$("#visbilitycont").slideDown('slow');
		}
	}
	function toggleContent(){
		$("#visbilitycont").slideToggle("slow");
	}
	

