// Fade van de ene link-kleur naar de andere in het contentgedeelte 
$("#content a").hover(function() {
    $(this).animate({ color: "#EB6A0A" }, 100);
},function() {
    $(this).animate({ color: "#444" }, 300);
});
$("#content p a").hover(function() {
    $(this).animate({ color: "#EB6A0A" }, 100);
},function() {
    $(this).animate({ color: "#444" }, 300);
});
// Fade van de ene link-kleur naar de andere in het footergedeelte
$("#footer a").hover(function() {
    $(this).animate({ color: "#FFF" }, 100);
},function() {
    $(this).animate({ color: "#777" }, 300);
});
// Fade van de ene link-kleur naar de andere in het twitterblok
$(".tweet_text a").hover(function() {
    $(this).animate({ color: "#EB6A0A" }, 100);
},function() {
    $(this).animate({ color: "#444" }, 300);
});
/*Tooltip*/
$(".tipTip").tipTip({defaultPosition:"bottom"});
/* NEWS */
$(".home_news #column_01").hover(
function() {
    $("img.news_img1_bw").stop().animate({"opacity": "0"}, "medium");
},function() {
    $("img.news_img1_bw").stop().animate({"opacity": "1"}, "medium");
});
$(".home_news #column_02").hover(
function() {
    $("img.news_img2_bw").stop().animate({"opacity": "0"}, "medium");
},function() {
    $("img.news_img2_bw").stop().animate({"opacity": "1"}, "medium");
});
$(".home_news #column_03").hover(
function() {
    $("img.news_img3_bw").stop().animate({"opacity": "0"}, "medium");
},function() {
    $("img.news_img3_bw").stop().animate({"opacity": "1"}, "medium");
});
/* TEAM */
jQuery('.column').hover(
function(){
    jQuery("img.team_img" + ($(this).attr('id').split('_')[1]) + '_bw').stop().animate({"opacity": "0"}, "medium")
}, function() {
    jQuery("img.team_img" + ($(this).attr('id').split('_')[1]) + '_bw').stop().animate({"opacity": "1"}, "medium")
})

