c80723bcc940675b31c98a6c550b3936c0c91cf0
[mtweb] / install.js
1 $(document).ready(
2   function(){
3     init_install();
4   }
5 );
6
7 function init_install(){
8   $("#sgbd").change(
9     function(){
10       var class_name = $(this).find("option:selected").val();
11       $("#sgbds .sgbd").removeClass("current");
12       $("#sgbd_" + class_name).addClass("current");
13     }
14   );
15 }