﻿$(document).ready(function () {
    //init additional functions
    oerlikontextile.downloadbox.init();
});


var oerlikontextile = {};

oerlikontextile.downloadbox = {
    init: function () {
        $("table.download tbody").hide();
        $("table.download thead").click(function () {
            $(this).next("tbody").toggle();
        });
        $("table.download").mouseleave(function () {
            $(this).next("tbody").hide();
        });

    }
}



