/**
 * functions.js
 * Zentrale Funktionsdatei
 *
 * @version 2011-10-18
 * 
 */

	Page = {
		
		initialize: function() {

			// Das muss sein, da jQuery "bind()" nur für Events vorsieht, bzw. "bind()" in älteren IEs nicht funktioniert.
			// von: http://www.robertsosinski.com/2009/04/28/binding-scope-in-javascript/
			Function.prototype.bind = function(scope) {
				var _function = this;
  
				return function() {
					return _function.apply(scope, arguments);
				}
			}
			// Bind => Ende
			
			// Reverse um Arrays umzudrehen
			jQuery.fn.reverse = [].reverse;
			
			jQuery(document).ready( function(ev) {
				this._initialize();
			}.bind(this))
		},

		_initialize: function() {

			
		}
		
	}
	
	Page.initialize();
