$(document).ready(function(){
/*  ********************************************************/
/*	SPRACHE 
	********************************************************/						   
	var patt=/\/en\//;
	found = document.URL.match(patt);
	
	if (found == null) {
		language = "de";
	} else {
		language = "en";
	}
	
/*  ********************************************************/
/*	SUCHE 
	********************************************************/
	if (language == "en") {
		txt = "Enter a search term";
	} else {
		txt = "Suchbegriff eingeben";
	}
	
	
	$('#searchform .text').val(txt).addClass("default");
	$('#searchform .text').focus(function(){
		if ($(this).val()== txt) {
			$(this).val("").removeClass("default");
		}
	});
	$('#searchform .text').blur(function(){
		if ($(this).val()== "") {
			$(this).val(txt).addClass("default");
		}
	});
	
	
/*  ********************************************************/
/*	FOOTER 
	********************************************************/
	if (language == "en") {
		$('#footernav a[href*="/home/agb"]').html("General Conditions").attr("href","/en/start/general-conditions/");
		$('#footernav a[href*="/home/sitemap"]').html("Sitemap").attr("href","/en/start/sitemap/");
		$('#footernav a[href*="/home/impressum"]').html("Imprint").attr("href","/en/start/imprint/");
	}	
});
