$(function() {
  
  // Suche
  $('html[lang=de] #suche input').blur( function() { if(this.value=='') { this.value='Ihre Suche'; } } ).focus( function () { if(this.value=='Ihre Suche') { this.value=''; } } );

  // Externe Links
  $('#col3 a[target][href^=http]').not(':has(img)').prepend('<img class="jsico" src=\"images/ico_ext.gif\" alt=\"Externer Link, öffnet in neuem Fenster\" />');

  // Bilder mit weißer Vertikallinie in der Mitte
  $('div.float_right img').each(function() {
    var imgurl    = $(this).attr('src');
    var imgwidth  = $(this).attr('width');
    var imgheight = $(this).attr('height');
    $(this).wrap('<div class="inner" />');
    $('div.inner').parent().css({'background': 'url(' + imgurl + ') no-repeat top left', 'height': + imgheight + 'px', 'width': + imgwidth + 'px'});    
    $('div.inner').addClass('line').css({'height': + imgheight + 'px', 'width': + imgwidth + 'px'});
  });
  $('div.float_right img').addClass('hideme');
  $('a.mail').before('<img class="jsico" src=\"images/ico_mail.gif\" alt=\"\" /> ');
  
});
