
$(document).ready(function(){
  $('#sponsoren img').mouseover( function(){
    s = $(this).attr("src"); 
    s = s.replace(".png", "_o.png"); 
    $(this).attr("src", s); 
  });
  
  $('#sponsoren img').mouseout( function(){
    s = $(this).attr("src"); 
    s = s.replace("_o.png", ".png"); 
    $(this).attr("src", s); 
  });  
  
  $('a.lightbox').lightBox();
  
  $('#logo').click( function(){
    location.href = "/index.php";
  });
  
  Cufon.set('fontFamily', 'Constantia');
  Cufon.replace('.zitat, .newstable p');
  Cufon.set('fontFamily', 'Arial');

  Cufon.replace('h1, h6');
  
  //$('#news').parent().find("h1.csc-firstHeader").css('marginLeft', '80px');
  
});

