PIR code troubles, please help me

Lose the ;
if (digitalRead(pirPin) == HIGH);
Should be:
if (digitalRead(pirPin) == HIGH)
{
// code here
}