$("#div_soho, #div_enterprise").live('mouseover', function () {
  $(this).find('p').css({ color : '#0088CC' });
});

$("#div_soho, #div_enterprise").live('mouseout', function () {
  $(this).find('p').css({ color : '#777777' });
});