Instead of:
if ($style['styleid'] != 14)
Try something like (replace x,y - you may need to put single-quotes around them, but I'm not sure):
if (in_array($style['styleid'],array(x.y)))
That is actually shown in the link Cellarius linked you to, only they show the third option also, which you aren't needing. If you don't have a test site, I would *highly* recommend one so you can try these things out and get a bit more confident in figuring things out yourself which will lead you to do other cool things on your site.