$(document).ready(function(){
 $('#home').hover(function(){
 $('#home a #img_home').fadeOut(300);
 },
 function(){
 $('#home a #img_home').fadeIn(300);
 });
 $('#contact').hover(function(){
 $('#contact a #img_contact').fadeOut(300);
 },
 function(){
 $('#contact a #img_contact').fadeIn(300);
 });
 $('#services').hover(function(){
 $('#services a #img_services').fadeOut(300);
 },
 function(){
 $('#services a #img_services').fadeIn(300);
 });
 $('#ref').hover(function(){
 $('#ref a #img_ref').fadeOut(300);
 },
 function(){
 $('#ref a #img_ref').fadeIn(300);
 });
 
 
 
 
});





