jQuery(document).ready(function(){
	// input-Felder leeren/fuellen
	swapValue = [];
	jQuery("#sword").each(function(i){
	   swapValue[i] = jQuery(this).val();
	   jQuery(this).focus(function(){
	      if (jQuery(this).val() == swapValue[i]) {
	         jQuery(this).val("");
	      }
	   }).blur(function(){
	      if (jQuery.trim(jQuery(this).val()) == "") {
	         jQuery(this).val(swapValue[i]);
	      }
	   });
	});
	jQuery('#lang').hover(function(){
		jQuery('#lang').css({'height':'auto'});
		jQuery('.lang').show();
	},
	function(){
		jQuery('.lang:not(.active)').hide();
		jQuery('#lang').css({'height':'24px'});	
	});
});