/**
  * St. Vincentius-Kliniken
  *
  * @copyright       punkt.de GmbH
  * @author          Martin Alker
  * @version         1.0
  *
  * @revision        $Revision: 1.3 $
  * @lastmodified    $Date: 2008/11/24 08:33:21 $
  */

// http://docs.jquery.com/Using_jQuery_with_Other_Libraries
var $j = jQuery.noConflict();

// http://gsgd.co.uk/sandbox/jquery/easing/
// $j.easing.def = "easeInCubic";

$j(document).ready(function() {

    // http://dev.jquery.com/view/trunk/plugins/accordion/demo/
    // http://docs.jquery.com/UI/Accordion
    $j(".accordion").accordion({
        // active: false,
        autoHeight: false,
        header: ".header-wrapper",
        alwaysOpen: true,
        animated: false
    });

    // info-panel
    $j(".dialog-close").click(function () {
        $j("#info-panel").hide();
        return false;
    });

});
