$('.sel_cont li').wrapInner('<span class="black" />');

$('.sel_img').hover(function(){ 
    var akt = $(this);
    akt.children('.normal_img').css('display','none');
    akt.children('.hover_img').css('display','block');
  }, function(){
    var akt = $(this);
    akt.children('.normal_img').css('display','block');
    akt.children('.hover_img').css('display','none');
  }
).click(function(){
  var target = $(this).children('.img_target').children().attr('href');
  //target ? location.href=target : 0 ;
  target ? window.open("http://toennjes.de","_blank") : 0;  //bis freigeschaltet
});
$(document.getElementById('logo')).click(function(){location.href='/'});

$('.sel_cont').each(function(){
   if($(this).text()=="")$(this).css({'height':'0px','padding':'0 !important','margin':'0 !important'});
});

  
var searchbox = $('#searchbox input.searchbox-sword')
var searchval = "Suche";
searchbox.val(searchval);
searchbox.focus(function(){if($(this).val()==searchval)$(this).val('');});
searchbox.blur(function(){if($(this).val().replace(/^\s+|\s+$/g, '')=='')$(this).val(searchval);});

//<input type="text" id="name" name="name" value="Benutzername" onfocus="if(this.value=='Benutzername')this.value=''" onblur="if(this.value=='')this.value='Benutzername'">
