// TechCrunch's Improved Viewing Userscript
// version 0.1 BETA!
// 2009-02-27
// Copyright (c) 2008, Blake Edwards
// Released under the GPL license
// http://www.gnu.org/copyleft/gpl.html
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script.
//
// To install, you need Greasemonkey: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
// Under Tools, there will be a new menu item to "Install User Script".
// Accept the default configuration and install.
//
// To uninstall, go to Tools/Manage User Scripts,
// select "Hello World", and click Uninstall.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name          TechCrunch Improved Viewing
// @namespace     http://webserviceable.com/tag/TechCrunch
// @description   Improve the viewing of TechCrunch.com
// @include       http://www.techcrunch.com/*
// @exclude       
// ==/UserScript==

// JQuery Integration taked from: http://internetducttape.com/2008/05/08/greasemonkey-ninja-jquery/
// Example from http://www.joanpiedra.com/jquery/greasemonkey/

// Add jQuery
    var GM_JQ = document.createElement('script');
    GM_JQ.src = 'http://jquery.com/src/jquery-latest.js';
    GM_JQ.type = 'text/javascript';
    document.getElementsByTagName('head')[0].appendChild(GM_JQ);

// Check if jQuery's loaded
    function GM_wait() {
        if(typeof unsafeWindow.jQuery == 'undefined') { window.setTimeout(GM_wait,100); }
	    else { $ = unsafeWindow.jQuery; letsJQuery(); }
    }
    GM_wait();

// All your GM code must be inside this function
    function letsJQuery() {
    
    	// CODE GOES HERE
    	
    }

