Here's thje code that fixed my problem
// query for info box
$query4 = "SELECT * FROM mb_intro_color_blurb";
$result4 = mysql_query($query4)
OR die(mysql_error()); //for debugging
$num_rows4 = mysql_num_rows($result4);
$number = mt_rand(1,$num_rows4);
$query5 = "SELECT *
FROM mb_intro_color_blurb
WHERE blurb_id = '$number'";
$result5 = mysql_query($query5)
OR die(mysql_error()); //for debugging
$db_result5 = mysql_fetch_array($result5);
the trick is in this line
$number = mt_rand(1,$num_rows4);
thanks