March 12th, 2010
Check out my old footy of Darren Navarette riding Neil Heddings Mini Ramp.

March 12th, 2010
I posted some of my old footy of Bucky Lasek skating the old Mission Valley Skatepark.
http://www.skateboard.tv/video/4501

March 7th, 2010
I recently posted the code for my jquery image zoom plugin here.

February 19th, 2010
First in Safari go to the Develop menu and select "Start Debugging JavaScript" from the drop down.
Next you'll want to add a call to debugger in your javaScript like this.
function onSomeThing() {
debugger;
}
You will then be able to run your page and have the Safari JavaScript debugger add a break point where your debugger call is placed.
