$(document).ready(function () {
   $("#newsimg").hover(
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/newsHover.png"});
      }, 
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/news.png"});
      }
    );
      $("#homeimg").hover(
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/homeHover.png"});
      }, 
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/home.png"});
      }
    ); 
    
    $("#produkteimg").hover(
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/produkteHover.png"});
      }, 
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/produkte.png"});
      }
    ); 
    
      $("#rechnerimg").hover(
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/rechnerHover.png"});
      }, 
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/rechner.png"});
      }
    ); 
    
     $("#serviceimg").hover(
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/serviceHover.png"});
      }, 
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/service.png"});
      }
    ); 
    
     $("#unternehmenimg").hover(
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/unternehmenHover.png"});
      }, 
      function () {
        $(this).attr({src: "fileadmin/template-fc/images/topnavigation/unternehmen.png"});
      }
    ); 

});





    
    
   