jQuery(document).ready(function() {
    jQuery(".demandperiod_item").click(function(){
        jQuery.get("index.php?eID=demandperiodinfo&tx_demandperiod_demandperiodinfo[demandperiod]=" + this.id,
            function(data){
                fillData(data)
                });
        jQuery("#demandperiod_info").show();
    });

    jQuery("#demandperiod_info_close").click(function() {
        jQuery("#demandperiod_info").hide();
    });

    function fillData(data){
        eval(data);
    }
});