var template = {"url":"http://jsbin.com/iciku","html" : "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n<script src=\"http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.3.2\/jquery.min.js\"><\/script>\n<script>\n\n\/\/ Standard\njQuery(document).ready(function(){\n     alert('DOM is ready!');\n});\n\n\/\/ Shortcut, but same thing as above\njQuery(function(){\n     alert('No really, the DOM is ready!');\n});\n\n\/\/ Shortcut with fail-safe usage of $. Keep in mind that a reference\n\/\/ to the jQuery function is passed into the anonymous function.\njQuery(function($){\n    alert('Seriously its ready!');\n    \/\/ Use $() with out fear of conflicts\n});\n\n<\/script>\n<\/head>\n<body>\n<\/body>\n<\/html>","javascript":""}
