//(c) 2008 Michael Manning 
jQuery.parseQuery=function(A,B){var C=(typeof A==="string"?A:window.location.search),E={f:function(F){return unescape(F).replace(/\+/g," ")}},B=(typeof A==="object"&&typeof B==="undefined")?A:B,E=jQuery.extend({},E,B),D={};jQuery.each(C.match(/^\??(.*)$/)[1].split("&"),function(F,G){G=G.split("=");G[1]=E.f(G[1]);D[G[0]]=D[G[0]]?((D[G[0]] instanceof Array)?(D[G[0]].push(G[1]),D[G[0]]):[D[G[0]],G[1]]):G[1]});return D};

$(document).ready(function(){

	$('ul#navigation_top>li:first').children('a').html('<img src=\'/fileadmin/templates/images/ico_home.png\' alt=\'Home\' />');
	$('li.first>a.active').append('&nbsp;&#187;');
	
		$.get('/fileadmin/templates/ajax/search_planer.php',function(data){
		$('ul#navigation_top').append(data);
		
		$('#searchFieldTop').keypress(function(event){
			if(event.keyCode==13){
				var search=escape($(this).val());
				var newLoc = "/freizeitangebote/ausflugslokale.html?search[keyword]="+search+"&search[regio]=0&search[allCat]=1";
				window.location.href=newLoc;
			}
		});
		
		
	});
	
	var q = $.parseQuery();
	if(q.topic!=""){
		$("select[name='topic']").val(q.topic);
	}
	
	
	
});
