At our place we actually use HTML / CSS. I know, I know - hear me out... :)
We use a simple grid css layout such as 960 Grid System with monochrome colors and next to no graphics (maybe a monochrome version of the client logo but thats it) to wireframe the most important pages.
Instead of needing to express complex UI elements, such as the items may move when clicked on, we can use simple JQuery to mock the movement.
Advantages
- We are using the tools we all know to build it
- We know the client will be able to view the wireframe easily
- The very basic look makes it clear that it IS a mockup
- We can show interactions / movements instead of having to explain them
- We know we're not building something that will be too tricky to implement in HTML!
- Takes us no longer than it would to use a graphical tool
Disadvatanges
- You need to be pretty on the ball with your HTML/CSS to do this quickly, but if you are, it's no slower than any other method
Certainly worth thinking about I'd say...