$(document).ready(function(){

  
  $("#user").focus(function() {
    if($(this).attr("value") == "Benutzername") {
      $(this).attr("value", "");
    }
    if($(this).attr("value") == "Username") {
      $(this).attr("value", "");
    }
  });
  
  $("#pass").focus(function() {
    if($(this).attr("value") == "Passwort") {
      $(this).attr("value", "");
    }
    if($(this).attr("value") == "Password") {
      $(this).attr("value", "");
    }
  });
  
  $('a.newwindow').click(function(e){
    e.preventDefault();    
    window.open($(this).attr('href'));
    return false;
  });
  
});

jQuery(window).bind("load", function() {
  jQuery("div#slider1").codaSlider()
  
  // jQuery("div#slider2").codaSlider()
  // etc, etc. Beware of cross-linking difficulties if using multiple sliders on one page.
});
