try this: also I am not sure why no-one above used chained expression might be I missed something
.delay() is only designed to work with animations. You'll have to resort to using regular setTimeouts for what you're doing:
hope it fit your need :)
Code
$("#rowone.one, #rowtwo.three, #rowthree.two").addClass("pageLoad");
setTimeout(function () {
$("#rowone.one, #rowtwo.three, #rowthree.two").removeClass("pageLoad");
}, 800);