
jQuery('a').hover(function(){
	$(this).clearQueue();
    $(this).stop().animate({ color:'#ffffff'}, "fast");
}, function() {
	$(this).clearQueue();
    $(this).stop().animate({color:'#aaaaaa'}, "slow");
});

jQuery('.container a').hover(function(){
	$(this).clearQueue();
    $(this).stop().animate({ color:'#ffffff'}, "fast");
}, function() {
	$(this).clearQueue();
    $(this).stop().animate({color:'#ffff00'}, "slow");
});
jQuery('a#grey ').hover(function(){
	$(this).clearQueue();
    $(this).stop().animate({ color:'#ffffff'}, "fast");
}, function() {
	$(this).clearQueue();
    $(this).stop().animate({color:'#aaa'}, "slow");
});
