        $(document).ready(function(){
$("div.if_small_frame").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
$(this).stop().animate({"opacity": "1"}, "slow");
});

$(".link").hover(function(){
$(this).animate({ color: '#ffffff'}, "100");
}, function() {
$(this).animate({ color: '#b5b5b5'}, "100");
});

});
