jQuery(document).ready(function() {
    jQuery(".ibv_item").click(function(){
        jQuery.get("index.php?eID=ibvinfo&tx_ibv_ibvinfo[ibv]=" + this.id,
            function(data){
                fillData(data)
                });
        jQuery("#ibv_info").show();
    });

    jQuery("#ibv_info_close").click(function() {
        jQuery("#ibv_info").hide();
    });

    function fillData(data){
        eval(data);
    }
});