How to use?
===========

Setup

  >>> from fanstatic import init_needed
  >>> needed = init_needed(base_url='')

You can import ``globalize`` from ``js.jquery_globalize`` and ``need`` it where you want
these resources to be included on a page::
  

  >>> from js.jquery_globalize import globalize
  >>> globalize.need()

All 350+ cultures are made available as resources::

  >>> from js.jquery_globalize import culture_am_et
  >>> culture_am_et.need()

Render the inclusion:

  >>> print needed.render()
  <script type="text/javascript" src="/fanstatic/jquery/jquery.js"></script>
  <script type="text/javascript" src="/fanstatic/jquery_globalize/globalize.js"></script>
  <script type="text/javascript" src="/fanstatic/jquery_globalize/cultures/globalize.culture.am-ET.js"></script>

