After I include the color plugin, and within the document.ready function I have
$('#front_menu_bottom').hover(function() {
$(this).animate({'color' : '#fd4c54' });
$('#portfolio_bkg').animate({ 'backgroundColor': '#6dcff6'})
}, function() {
$(this).animate({'color' : '#ad0004' });
$('#portfolio_bkg').animate({ 'backgroundColor': '#ed1c24'})
}
);
So, it's pretty straight forward, and I don't make any changes to the effects queue, at least I don't think I do, but is there a way to maybe try a separate effects queue for this animation? Is that possible? That might do it. I'm no pro, I'm doing google searches trying to find a way now, I'll post it if I can find anything useful.