$(document).ready(function(){
 
$("#header").hover(
function() {
$("img.focus").stop().animate({"opacity": "0"}, "normal");
$("img.blur").stop().animate({"opacity": "1"}, "normal");
},
function() {
$("img.focus").stop().animate({"opacity": "1"}, 1500);
$("img.blur").stop().animate({"opacity": "0"}, 1500);
});


$(".fbIcon").hover(
function() {
$("img.fbGrey").stop().animate({"opacity": "0"}, "normal");
$("img.fb").stop().animate({"opacity": "1"}, "normal");
},
function() {
$("img.fbGrey").stop().animate({"opacity": "1"}, 1500);
$("img.fb").stop().animate({"opacity": "0"}, 1500);
});


 $(".youtubeIcon").hover(
function() {
$("img.youtubeGrey").stop().animate({"opacity": "0"}, "normal");
$("img.youtube").stop().animate({"opacity": "1"}, "normal");
},
function() {
$("img.youtubeGrey").stop().animate({"opacity": "1"}, 1500);
$("img.youtube").stop().animate({"opacity": "0"}, 1500);
});
});


