 /*********************************************************************************
 * at² GmbH
 * Bahnhofstr. 51
 * D-87435 Kempten
 * Germany
 *
 * at² GmbH
 * Löffelholzstr. 20
 * Haus 12 Mitte
 * D-90441 Nürnberg
 * Germany
 *
 * http://www.at2-software.com
 * info[at]at2-software.com
 *
 * @Creation: 07.07.2011
 * @Version: 0.5
 *
 * @Client:             GfG – Gesundheit für Generationen®
 * @Clientwebsite:      www.gfg-online.com
 * @Project:            Relaunch 2011
 *
 * JavaScript:
 * @Author:			    Markus Pezold  (für at² GmbH)
 * @Authorwebsite:      http://www.black-forever.de
 *
 *********************************************************************************/

var GfG = {
	"init": function () {
		GfG.registerEvents();
	},

    "registerEvents": function () {

        // Equal Hights ... based on #content.height();

        if($('#content').length) {

              contentHeight = $("#content").height();
              navigationHeight = $("#navigation").height();
              sidebarHeight = $("#sidebar").height();

              if(navigationHeight < contentHeight) {
                    $("#navigation").css('height', contentHeight + 10);
              }

              if(sidebarHeight < contentHeight) {
                    $("#sidebar").css('height', contentHeight + 10);
              }

        }
	}

};

$(document).ready(function () {
	GfG.init();
});
